public enum StorageWhere extends java.lang.Enum<StorageWhere>
| Enum Constant and Description |
|---|
DEVICE
All objects are stored and retrieved on the local file system of the device.
|
GLUONCLOUD
All objects are stored and retrieved from Gluon Cloud.
|
| Modifier and Type | Method and Description |
|---|---|
static StorageWhere |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StorageWhere[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageWhere DEVICE
public static final StorageWhere GLUONCLOUD
public static StorageWhere[] values()
for (StorageWhere c : StorageWhere.values()) System.out.println(c);
public static StorageWhere 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