public static enum WriteRequest.Type extends Enum<WriteRequest.Type>
| Enum Constant and Description |
|---|
PUT |
PUT_IF_ABSENT |
PUT_IF_VALUE |
PUT_IF_VERSION |
REMOVE |
REMOVE_IF_VALUE |
REMOVE_IF_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static WriteRequest.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WriteRequest.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriteRequest.Type PUT
public static final WriteRequest.Type PUT_IF_VERSION
public static final WriteRequest.Type PUT_IF_VALUE
public static final WriteRequest.Type PUT_IF_ABSENT
public static final WriteRequest.Type REMOVE
public static final WriteRequest.Type REMOVE_IF_VERSION
public static final WriteRequest.Type REMOVE_IF_VALUE
public static WriteRequest.Type[] values()
for (WriteRequest.Type c : WriteRequest.Type.values()) System.out.println(c);
public static WriteRequest.Type 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.