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