public enum OperationType extends java.lang.Enum<OperationType>
Enum Constant and Description |
---|
AES |
BOOTSTRAP |
BULK_LOAD |
REBUILD |
RESTORE_REPLICA_COUNT |
UNBOOTSTRAP |
Modifier and Type | Method and Description |
---|---|
static OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationType AES
public static final OperationType BOOTSTRAP
public static final OperationType UNBOOTSTRAP
public static final OperationType RESTORE_REPLICA_COUNT
public static final OperationType BULK_LOAD
public static final OperationType REBUILD
public static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);
public static OperationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2014 The Apache Software Foundation