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