public enum TypeOperation extends Enum<TypeOperation>
| Enum Constant and Description |
|---|
CAS |
GET |
GET_REMOVE |
GET_UPDATE |
NO_OP |
PUT |
REMOVE |
REMOVE_IF |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static TypeOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeOperation GET
public static final TypeOperation PUT
public static final TypeOperation UPDATE
public static final TypeOperation REMOVE
public static final TypeOperation CAS
public static final TypeOperation GET_UPDATE
public static final TypeOperation GET_REMOVE
public static final TypeOperation REMOVE_IF
public static final TypeOperation NO_OP
public static TypeOperation[] values()
for (TypeOperation c : TypeOperation.values()) System.out.println(c);
public static TypeOperation 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 quasardb. All Rights Reserved.