Enum SegmentGeneratorConfig.TimeColumnType
- java.lang.Object
-
- java.lang.Enum<SegmentGeneratorConfig.TimeColumnType>
-
- org.apache.pinot.segment.spi.creator.SegmentGeneratorConfig.TimeColumnType
-
- All Implemented Interfaces:
Serializable,Comparable<SegmentGeneratorConfig.TimeColumnType>,java.lang.constant.Constable
- Enclosing class:
- SegmentGeneratorConfig
public static enum SegmentGeneratorConfig.TimeColumnType extends Enum<SegmentGeneratorConfig.TimeColumnType>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EPOCHSIMPLE_DATE
-
Method Summary
Modifier and Type Method Description static SegmentGeneratorConfig.TimeColumnTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SegmentGeneratorConfig.TimeColumnType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EPOCH
public static final SegmentGeneratorConfig.TimeColumnType EPOCH
-
SIMPLE_DATE
public static final SegmentGeneratorConfig.TimeColumnType SIMPLE_DATE
-
-
Method Detail
-
values
public static SegmentGeneratorConfig.TimeColumnType[] 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
public static SegmentGeneratorConfig.TimeColumnType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-