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