public enum AdUnitEvent extends java.lang.Enum<AdUnitEvent>
| Enum Constant and Description |
|---|
KEY_DOWN |
ON_CREATE |
ON_DESTROY |
ON_FOCUS_GAINED |
ON_FOCUS_LOST |
ON_PAUSE |
ON_RESTORE |
ON_RESUME |
ON_START |
ON_STOP |
| Modifier and Type | Method and Description |
|---|---|
static AdUnitEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdUnitEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdUnitEvent ON_START
public static final AdUnitEvent ON_CREATE
public static final AdUnitEvent ON_RESUME
public static final AdUnitEvent ON_DESTROY
public static final AdUnitEvent ON_PAUSE
public static final AdUnitEvent KEY_DOWN
public static final AdUnitEvent ON_RESTORE
public static final AdUnitEvent ON_STOP
public static final AdUnitEvent ON_FOCUS_GAINED
public static final AdUnitEvent ON_FOCUS_LOST
public static AdUnitEvent[] values()
for (AdUnitEvent c : AdUnitEvent.values()) System.out.println(c);
public static AdUnitEvent valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null