AdInspectorError.ErrorCode

public enum AdInspectorError.ErrorCode extends Enum


Summary

Enum Values

ALREADY_OPEN

Ad inspector cannot be opened because it is already open.

FAILED_TO_LOAD

Ad inspector failed to load.

INTERNAL_ERROR

Ad inspector had an internal error.

NOT_IN_TEST_MODE

Ad inspector cannot be opened because the device is not in test mode.

Public methods

final @NonNull EnumEntries<@NonNull AdInspectorError.ErrorCode>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

final int
final @NonNull AdInspectorError.ErrorCode

Returns the enum constant of this type with the specified name.

final @NonNull AdInspectorError.ErrorCode[]

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

ALREADY_OPEN

AdInspectorError.ErrorCode AdInspectorError.ErrorCode.ALREADY_OPEN

Ad inspector cannot be opened because it is already open.

FAILED_TO_LOAD

AdInspectorError.ErrorCode AdInspectorError.ErrorCode.FAILED_TO_LOAD

Ad inspector failed to load.

INTERNAL_ERROR

AdInspectorError.ErrorCode AdInspectorError.ErrorCode.INTERNAL_ERROR

Ad inspector had an internal error.

NOT_IN_TEST_MODE

AdInspectorError.ErrorCode AdInspectorError.ErrorCode.NOT_IN_TEST_MODE

Ad inspector cannot be opened because the device is not in test mode. See https://developers.google.com/admob/android/test-ads#enable_test_devices for more information.

Public methods

getEntries

public final @NonNull EnumEntries<@NonNull AdInspectorError.ErrorCodegetEntries()

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

getValue

public final int getValue()

valueOf

public final @NonNull AdInspectorError.ErrorCode valueOf(@NonNull String value)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

public final @NonNull AdInspectorError.ErrorCode[] values()

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.