Enum ForwardIndexHandler.Operation
- java.lang.Object
-
- java.lang.Enum<ForwardIndexHandler.Operation>
-
- org.apache.pinot.segment.local.segment.index.loader.ForwardIndexHandler.Operation
-
- All Implemented Interfaces:
Serializable,Comparable<ForwardIndexHandler.Operation>,java.lang.constant.Constable
- Enclosing class:
- ForwardIndexHandler
protected static enum ForwardIndexHandler.Operation extends Enum<ForwardIndexHandler.Operation>
-
-
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 ForwardIndexHandler.OperationvalueOf(String name)Returns the enum constant of this type with the specified name.static ForwardIndexHandler.Operation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLE_FORWARD_INDEX_FOR_DICT_COLUMN
public static final ForwardIndexHandler.Operation DISABLE_FORWARD_INDEX_FOR_DICT_COLUMN
-
DISABLE_FORWARD_INDEX_FOR_RAW_COLUMN
public static final ForwardIndexHandler.Operation DISABLE_FORWARD_INDEX_FOR_RAW_COLUMN
-
ENABLE_FORWARD_INDEX_FOR_DICT_COLUMN
public static final ForwardIndexHandler.Operation ENABLE_FORWARD_INDEX_FOR_DICT_COLUMN
-
ENABLE_FORWARD_INDEX_FOR_RAW_COLUMN
public static final ForwardIndexHandler.Operation ENABLE_FORWARD_INDEX_FOR_RAW_COLUMN
-
ENABLE_DICTIONARY
public static final ForwardIndexHandler.Operation ENABLE_DICTIONARY
-
DISABLE_DICTIONARY
public static final ForwardIndexHandler.Operation DISABLE_DICTIONARY
-
CHANGE_RAW_INDEX_COMPRESSION_TYPE
public static final ForwardIndexHandler.Operation CHANGE_RAW_INDEX_COMPRESSION_TYPE
-
-
Method Detail
-
values
public static ForwardIndexHandler.Operation[] 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 ForwardIndexHandler.Operation 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
-
-