Package org.apache.pinot.spi.data
Enum TimeGranularitySpec.TimeFormat
- java.lang.Object
-
- java.lang.Enum<TimeGranularitySpec.TimeFormat>
-
- org.apache.pinot.spi.data.TimeGranularitySpec.TimeFormat
-
- All Implemented Interfaces:
Serializable,Comparable<TimeGranularitySpec.TimeFormat>,java.lang.constant.Constable
- Enclosing class:
- TimeGranularitySpec
@Deprecated public static enum TimeGranularitySpec.TimeFormat extends Enum<TimeGranularitySpec.TimeFormat>
Deprecated.
-
-
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 EPOCHDeprecated.SIMPLE_DATE_FORMATDeprecated.
-
Method Summary
Modifier and Type Method Description static TimeGranularitySpec.TimeFormatvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static TimeGranularitySpec.TimeFormat[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EPOCH
public static final TimeGranularitySpec.TimeFormat EPOCH
Deprecated.
-
SIMPLE_DATE_FORMAT
public static final TimeGranularitySpec.TimeFormat SIMPLE_DATE_FORMAT
Deprecated.
-
-
Method Detail
-
values
public static TimeGranularitySpec.TimeFormat[] values()
Deprecated.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 TimeGranularitySpec.TimeFormat valueOf(String name)
Deprecated.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
-
-