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>
- Enclosing class:
- ForwardIndexHandler
protected static enum ForwardIndexHandler.Operation extends Enum<ForwardIndexHandler.Operation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANGE_RAW_INDEX_COMPRESSION_TYPEDISABLE_DICTIONARYDISABLE_FORWARD_INDEXENABLE_DICTIONARYENABLE_FORWARD_INDEX
-
Method Summary
All Methods Static Methods Concrete Methods 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
public static final ForwardIndexHandler.Operation DISABLE_FORWARD_INDEX
-
ENABLE_FORWARD_INDEX
public static final ForwardIndexHandler.Operation ENABLE_FORWARD_INDEX
-
DISABLE_DICTIONARY
public static final ForwardIndexHandler.Operation DISABLE_DICTIONARY
-
ENABLE_DICTIONARY
public static final ForwardIndexHandler.Operation ENABLE_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. This method may be used to iterate over the constants as follows:for (ForwardIndexHandler.Operation c : ForwardIndexHandler.Operation.values()) System.out.println(c);
- 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
-
-