Enum FieldConfig.IndexType
- java.lang.Object
-
- java.lang.Enum<FieldConfig.IndexType>
-
- org.apache.pinot.spi.config.table.FieldConfig.IndexType
-
- All Implemented Interfaces:
Serializable,Comparable<FieldConfig.IndexType>,java.lang.constant.Constable
- Enclosing class:
- FieldConfig
public static enum FieldConfig.IndexType extends Enum<FieldConfig.IndexType>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Method Summary
Modifier and Type Method Description static FieldConfig.IndexTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FieldConfig.IndexType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVERTED
public static final FieldConfig.IndexType INVERTED
-
SORTED
public static final FieldConfig.IndexType SORTED
-
TEXT
public static final FieldConfig.IndexType TEXT
-
FST
public static final FieldConfig.IndexType FST
-
H3
public static final FieldConfig.IndexType H3
-
JSON
public static final FieldConfig.IndexType JSON
-
TIMESTAMP
public static final FieldConfig.IndexType TIMESTAMP
-
RANGE
public static final FieldConfig.IndexType RANGE
-
-
Method Detail
-
values
public static FieldConfig.IndexType[] 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 FieldConfig.IndexType 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
-
-