FullScreenContentError.ErrorCode

public enum FullScreenContentError.ErrorCode extends Enum


Summary

Enum Values

AD_REUSED

The ad has already been shown.

APP_NOT_FOREGROUND

The app is not in the foreground.

H5_SHOW_AD_NOT_LOADED

Received h5 "show" gmsg on an ad that is not loaded.

INTERNAL_ERROR

Something happened internally; for instance, an Exception occurred when preparing to show ad content.

MEDIATION_SHOW_ERROR

The mediation adapter failed to show the ad.

Public methods

final @NonNull EnumEntries<@NonNull FullScreenContentError.ErrorCode>

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

final int
final @NonNull FullScreenContentError.ErrorCode

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

final @NonNull FullScreenContentError.ErrorCode[]

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

Enum Values

APP_NOT_FOREGROUND

FullScreenContentError.ErrorCode FullScreenContentError.ErrorCode.APP_NOT_FOREGROUND

The app is not in the foreground.

H5_SHOW_AD_NOT_LOADED

FullScreenContentError.ErrorCode FullScreenContentError.ErrorCode.H5_SHOW_AD_NOT_LOADED

Received h5 "show" gmsg on an ad that is not loaded.

INTERNAL_ERROR

FullScreenContentError.ErrorCode FullScreenContentError.ErrorCode.INTERNAL_ERROR

Something happened internally; for instance, an Exception occurred when preparing to show ad content.

MEDIATION_SHOW_ERROR

FullScreenContentError.ErrorCode FullScreenContentError.ErrorCode.MEDIATION_SHOW_ERROR

The mediation adapter failed to show the ad. See mediationAdError for the underlying cause.

Public methods

getEntries

public final @NonNull EnumEntries<@NonNull FullScreenContentError.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 FullScreenContentError.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 FullScreenContentError.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.