AdChoicesPlacement

enum AdChoicesPlacement : Enum


AdChoices icon placement.

Summary

Enum Values

BOTTOM_LEFT

The bottom left corner.

BOTTOM_RIGHT

The bottom right corner.

TOP_LEFT

The top left corner.

TOP_RIGHT

The top right corner.

Public functions

AdChoicesPlacement
valueOf(value: String)

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

Array<AdChoicesPlacement>

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

Public properties

EnumEntries<AdChoicesPlacement>

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

Int

Enum Values

BOTTOM_LEFT

val AdChoicesPlacement.BOTTOM_LEFTAdChoicesPlacement

The bottom left corner.

BOTTOM_RIGHT

val AdChoicesPlacement.BOTTOM_RIGHTAdChoicesPlacement

The bottom right corner.

TOP_LEFT

val AdChoicesPlacement.TOP_LEFTAdChoicesPlacement

The top left corner.

TOP_RIGHT

val AdChoicesPlacement.TOP_RIGHTAdChoicesPlacement

The top right corner.

Public functions

valueOf

fun valueOf(value: String): AdChoicesPlacement

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<AdChoicesPlacement>

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<AdChoicesPlacement>

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