public static enum Enum.AdTypes extends java.lang.Enum<Enum.AdTypes>
| Enum Constant and Description |
|---|
NONE
Banner's ad type is not defined yet.
|
ONE_PART
The original creative is not reloaded and no additional impressions are recorded.
|
TWO_PART
When the expand method is called with the URL parameter and a new view will be used.
|
| Modifier and Type | Method and Description |
|---|---|
static Enum.AdTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enum.AdTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enum.AdTypes NONE
public static final Enum.AdTypes ONE_PART
public static final Enum.AdTypes TWO_PART
public static Enum.AdTypes[] values()
for (Enum.AdTypes c : Enum.AdTypes.values()) System.out.println(c);
public static Enum.AdTypes 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