public static enum AdProperties.AdType extends java.lang.Enum<AdProperties.AdType>
Enum Constant and Description |
---|
IMAGE_BANNER
A banner ad that contains no rich media features.
|
INTERSTITIAL
An interstitial ad.
|
MODELESS_INTERSTITIAL
A modeless interstitial ad
|
MRAID_1
A rich media ad that is based on the MRAID v1.0 specification.
|
MRAID_2
A rich media ad that is based on the MRAID v2.0 specification.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static AdProperties.AdType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdProperties.AdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdProperties.AdType IMAGE_BANNER
public static final AdProperties.AdType MRAID_1
public static final AdProperties.AdType MRAID_2
public static final AdProperties.AdType INTERSTITIAL
public static final AdProperties.AdType MODELESS_INTERSTITIAL
public static AdProperties.AdType[] values()
for (AdProperties.AdType c : AdProperties.AdType.values()) System.out.println(c);
public static AdProperties.AdType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<AdProperties.AdType>