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