public static enum StorageUsageRecord.OperationType extends Enum<StorageUsageRecord.OperationType>
| Modifier and Type | Method and Description |
|---|---|
static StorageUsageRecord.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageUsageRecord.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageUsageRecord.OperationType CREATE
public static final StorageUsageRecord.OperationType READ
public static final StorageUsageRecord.OperationType UPDATE
public static final StorageUsageRecord.OperationType DELETE
public static StorageUsageRecord.OperationType[] values()
for (StorageUsageRecord.OperationType c : StorageUsageRecord.OperationType.values()) System.out.println(c);
public static StorageUsageRecord.OperationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All Rights Reserved.