FullScreenContentError.ErrorCode

enum FullScreenContentError.ErrorCode : 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 functions

FullScreenContentError.ErrorCode
valueOf(value: String)

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

Array<FullScreenContentError.ErrorCode>

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

Public properties

EnumEntries<FullScreenContentError.ErrorCode>

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

Int

Enum Values

AD_REUSED

val FullScreenContentError.ErrorCode.AD_REUSEDFullScreenContentError.ErrorCode

The ad has already been shown.

APP_NOT_FOREGROUND

val FullScreenContentError.ErrorCode.APP_NOT_FOREGROUNDFullScreenContentError.ErrorCode

The app is not in the foreground.

H5_SHOW_AD_NOT_LOADED

val FullScreenContentError.ErrorCode.H5_SHOW_AD_NOT_LOADEDFullScreenContentError.ErrorCode

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

INTERNAL_ERROR

val FullScreenContentError.ErrorCode.INTERNAL_ERRORFullScreenContentError.ErrorCode

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

MEDIATION_SHOW_ERROR

val FullScreenContentError.ErrorCode.MEDIATION_SHOW_ERRORFullScreenContentError.ErrorCode

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

Public functions

valueOf

fun valueOf(value: String): FullScreenContentError.ErrorCode

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

fun values(): Array<FullScreenContentError.ErrorCode>

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.

Public properties

entries

val entriesEnumEntries<FullScreenContentError.ErrorCode>

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.

value

val valueInt