org.apache.cassandra.db.compaction
Enum CompactionType
java.lang.Object
java.lang.Enum<CompactionType>
org.apache.cassandra.db.compaction.CompactionType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CompactionType>
public enum CompactionType
- extends java.lang.Enum<CompactionType>
Method Summary |
java.lang.String |
toString()
|
static CompactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CompactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
MAJOR
public static final CompactionType MAJOR
MINOR
public static final CompactionType MINOR
VALIDATION
public static final CompactionType VALIDATION
KEY_CACHE_SAVE
public static final CompactionType KEY_CACHE_SAVE
ROW_CACHE_SAVE
public static final CompactionType ROW_CACHE_SAVE
CLEANUP
public static final CompactionType CLEANUP
SCRUB
public static final CompactionType SCRUB
INDEX_BUILD
public static final CompactionType INDEX_BUILD
SSTABLE_BUILD
public static final CompactionType SSTABLE_BUILD
UNKNOWN
public static final CompactionType UNKNOWN
values
public static CompactionType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (CompactionType c : CompactionType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CompactionType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<CompactionType>
Copyright © 2011 The Apache Software Foundation