public enum OperationType extends java.lang.Enum<OperationType>
Enum Constant and Description |
---|
CLEANUP |
COMPACTION |
INDEX_BUILD |
KEY_CACHE_SAVE |
ROW_CACHE_SAVE |
SCRUB |
TOMBSTONE_COMPACTION
Compaction for tombstone removal
|
UNKNOWN |
UPGRADE_SSTABLES |
VALIDATION |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
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 COMPACTION
public static final OperationType VALIDATION
public static final OperationType KEY_CACHE_SAVE
public static final OperationType ROW_CACHE_SAVE
public static final OperationType CLEANUP
public static final OperationType SCRUB
public static final OperationType UPGRADE_SSTABLES
public static final OperationType INDEX_BUILD
public static final OperationType TOMBSTONE_COMPACTION
public static final OperationType UNKNOWN
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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<OperationType>
Copyright © 2013 The Apache Software Foundation