public static enum Operation.Operations extends Enum<Operation.Operations>
| Enum Constant and Description |
|---|
ABORT |
ASSERT |
COMMENT |
COMMIT |
DELETE |
INSERT |
MUTATE |
SELECT |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
String |
op()
Returns the op for Operations.
|
static Operation.Operations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation.Operations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.Operations INSERT
public static final Operation.Operations SELECT
public static final Operation.Operations UPDATE
public static final Operation.Operations MUTATE
public static final Operation.Operations DELETE
public static final Operation.Operations COMMIT
public static final Operation.Operations ABORT
public static final Operation.Operations COMMENT
public static final Operation.Operations ASSERT
public static Operation.Operations[] values()
for (Operation.Operations c : Operation.Operations.values()) System.out.println(c);
public static Operation.Operations 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 nullpublic String op()