public static enum Op.Type extends Enum<Op.Type>
| Enum Constant and Description |
|---|
DELETE_RANGE |
PUT |
RANGE |
TXN |
| Modifier and Type | Method and Description |
|---|---|
static Op.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Op.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Op.Type PUT
public static final Op.Type RANGE
public static final Op.Type DELETE_RANGE
public static final Op.Type TXN
public static Op.Type[] values()
for (Op.Type c : Op.Type.values()) System.out.println(c);
public static Op.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 © 2020. All rights reserved.