public static enum UnityAds.FinishState extends java.lang.Enum<UnityAds.FinishState>
| Enum Constant and Description |
|---|
COMPLETED
A state that indicates that the ad was played entirely.
|
ERROR
A state that indicates that the ad did not successfully display.
|
SKIPPED
A state that indicates that the user skipped the ad.
|
| Modifier and Type | Method and Description |
|---|---|
static UnityAds.FinishState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnityAds.FinishState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnityAds.FinishState ERROR
public static final UnityAds.FinishState SKIPPED
public static final UnityAds.FinishState COMPLETED
public static UnityAds.FinishState[] values()
for (UnityAds.FinishState c : UnityAds.FinishState.values()) System.out.println(c);
public static UnityAds.FinishState 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