Enum ExternalSortJobPart.ExternalSortJobPartType
- java.lang.Object
-
- java.lang.Enum<ExternalSortJobPart.ExternalSortJobPartType>
-
- org.apache.iotdb.db.query.externalsort.ExternalSortJobPart.ExternalSortJobPartType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExternalSortJobPart.ExternalSortJobPartType>
- Enclosing class:
- ExternalSortJobPart
public static enum ExternalSortJobPart.ExternalSortJobPartType extends java.lang.Enum<ExternalSortJobPart.ExternalSortJobPartType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTIPLE_SOURCESINGLE_SOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalSortJobPart.ExternalSortJobPartTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExternalSortJobPart.ExternalSortJobPartType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_SOURCE
public static final ExternalSortJobPart.ExternalSortJobPartType SINGLE_SOURCE
-
MULTIPLE_SOURCE
public static final ExternalSortJobPart.ExternalSortJobPartType MULTIPLE_SOURCE
-
-
Method Detail
-
values
public static ExternalSortJobPart.ExternalSortJobPartType[] 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 (ExternalSortJobPart.ExternalSortJobPartType c : ExternalSortJobPart.ExternalSortJobPartType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalSortJobPart.ExternalSortJobPartType 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
-
-