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