public enum AdUnitType extends java.lang.Enum<AdUnitType>
| Enum Constant and Description |
|---|
CRITEO_BANNER |
CRITEO_CUSTOM_NATIVE |
CRITEO_INTERSTITIAL |
| Modifier and Type | Method and Description |
|---|---|
static AdUnitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdUnitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdUnitType CRITEO_BANNER
public static final AdUnitType CRITEO_INTERSTITIAL
public static final AdUnitType CRITEO_CUSTOM_NATIVE
public static AdUnitType[] values()
for (AdUnitType c : AdUnitType.values()) System.out.println(c);
public static AdUnitType 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