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