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