Enum ActiveCompaction.CompactionType
java.lang.Object
java.lang.Enum<ActiveCompaction.CompactionType>
org.apache.accumulo.core.client.admin.ActiveCompaction.CompactionType
- All Implemented Interfaces:
Serializable
,Comparable<ActiveCompaction.CompactionType>
- Enclosing class:
- ActiveCompaction
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static ActiveCompaction.CompactionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MINOR
compaction to flush a tablets memory -
MERGE
@Deprecated(since="2.1.0", forRemoval=true) public static final ActiveCompaction.CompactionType MERGEDeprecated, for removal: This API element is subject to removal in a future version.Accumulo no longer does merging minor compactions. -
MAJOR
compaction that merges a subset of a tablets files into one file -
FULL
compaction that merges all of a tablets files into one file
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-