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