public static enum Log.Operation extends Enum<Log.Operation>
Operation is the type of datastore operation.| Enum Constant and Description |
|---|
DELETE
Delete operation.
|
GET
Get (Read) operation.
|
PUT
Put (Create) operation.
|
UPDATE
Update operation.
|
| Modifier and Type | Method and Description |
|---|---|
static Log.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Log.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Log.Operation GET
public static final Log.Operation PUT
public static final Log.Operation UPDATE
public static final Log.Operation DELETE
public static Log.Operation[] values()
for (Log.Operation c : Log.Operation.values()) System.out.println(c);
public static Log.Operation 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 © 2009-2014 Eiichiro Uchiumi. All Rights Reserved.