public static enum Enum.States extends java.lang.Enum<Enum.States>
| Enum Constant and Description |
|---|
DEFAULT
The initial position and size of the ad container as placed by the application and Advantage SDK.
|
ERROR
A major problem happened during the loading period.
|
EXPANDED
The ad container has expanded to cover the application content at the top of the view hierarchy.
|
HIDDEN
The banner destroyed via Advantage's destroy() method.
|
LOADING
The Advantage is not yet ready for interactions with the plug-in implementation.
|
OFFLINE
Publisher loaded an offline content into Advantage.
|
PROCESSING
Banner is in processing state (introduced with Corner Ad)
|
RESIZED
The ad container has changed size.
|
WINDOW
Banner is in window mode (introduced with Corner Ad)
|
| Modifier and Type | Method and Description |
|---|---|
static Enum.States |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enum.States[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enum.States LOADING
public static final Enum.States DEFAULT
public static final Enum.States EXPANDED
public static final Enum.States RESIZED
public static final Enum.States HIDDEN
public static final Enum.States ERROR
public static final Enum.States OFFLINE
public static final Enum.States WINDOW
public static final Enum.States PROCESSING
public static Enum.States[] values()
for (Enum.States c : Enum.States.values()) System.out.println(c);
public static Enum.States 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