Enum InnerSeqCompactionPerformer
- java.lang.Object
-
- java.lang.Enum<InnerSeqCompactionPerformer>
-
- org.apache.iotdb.db.engine.compaction.constant.InnerSeqCompactionPerformer
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<InnerSeqCompactionPerformer>
public enum InnerSeqCompactionPerformer extends java.lang.Enum<InnerSeqCompactionPerformer>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description READ_CHUNK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ISeqCompactionPerformercreateInstance()static InnerSeqCompactionPerformergetInnerSeqCompactionPerformer(java.lang.String name)static InnerSeqCompactionPerformervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static InnerSeqCompactionPerformer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ_CHUNK
public static final InnerSeqCompactionPerformer READ_CHUNK
-
-
Method Detail
-
values
public static InnerSeqCompactionPerformer[] 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 (InnerSeqCompactionPerformer c : InnerSeqCompactionPerformer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InnerSeqCompactionPerformer 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 namejava.lang.NullPointerException- if the argument is null
-
getInnerSeqCompactionPerformer
public static InnerSeqCompactionPerformer getInnerSeqCompactionPerformer(java.lang.String name)
-
createInstance
public ISeqCompactionPerformer createInstance()
-
-