public static enum Enum.PlacementTypes extends java.lang.Enum<Enum.PlacementTypes>
| Enum Constant and Description |
|---|
INLINE
The default ad placement is inline with content in the display (i.e.
|
INTERSTITIAL
The ad placement is over laid on top of content
|
| Modifier and Type | Method and Description |
|---|---|
static Enum.PlacementTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enum.PlacementTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enum.PlacementTypes INLINE
public static final Enum.PlacementTypes INTERSTITIAL
public static Enum.PlacementTypes[] values()
for (Enum.PlacementTypes c : Enum.PlacementTypes.values()) System.out.println(c);
public static Enum.PlacementTypes 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