Enum FSTBuilder.InfoEntry
- java.lang.Object
-
- java.lang.Enum<FSTBuilder.InfoEntry>
-
- org.apache.pinot.segment.local.utils.nativefst.builder.FSTBuilder.InfoEntry
-
- All Implemented Interfaces:
Serializable,Comparable<FSTBuilder.InfoEntry>,java.lang.constant.Constable
- Enclosing class:
- FSTBuilder
public static enum FSTBuilder.InfoEntry extends Enum<FSTBuilder.InfoEntry>
Debug and information constants.
-
-
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 CONSTANT_ARC_AUTOMATON_SIZEESTIMATED_MEMORY_CONSUMPTION_MBMAX_ACTIVE_PATH_LENGTHSERIALIZATION_BUFFER_REALLOCATIONSSERIALIZATION_BUFFER_SIZESTATE_REGISTRY_SIZESTATE_REGISTRY_TABLE_SLOTS
-
Method Summary
Modifier and Type Method Description StringtoString()static FSTBuilder.InfoEntryvalueOf(String name)Returns the enum constant of this type with the specified name.static FSTBuilder.InfoEntry[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERIALIZATION_BUFFER_SIZE
public static final FSTBuilder.InfoEntry SERIALIZATION_BUFFER_SIZE
-
SERIALIZATION_BUFFER_REALLOCATIONS
public static final FSTBuilder.InfoEntry SERIALIZATION_BUFFER_REALLOCATIONS
-
CONSTANT_ARC_AUTOMATON_SIZE
public static final FSTBuilder.InfoEntry CONSTANT_ARC_AUTOMATON_SIZE
-
MAX_ACTIVE_PATH_LENGTH
public static final FSTBuilder.InfoEntry MAX_ACTIVE_PATH_LENGTH
-
STATE_REGISTRY_TABLE_SLOTS
public static final FSTBuilder.InfoEntry STATE_REGISTRY_TABLE_SLOTS
-
STATE_REGISTRY_SIZE
public static final FSTBuilder.InfoEntry STATE_REGISTRY_SIZE
-
ESTIMATED_MEMORY_CONSUMPTION_MB
public static final FSTBuilder.InfoEntry ESTIMATED_MEMORY_CONSUMPTION_MB
-
-
Method Detail
-
values
public static FSTBuilder.InfoEntry[] 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 FSTBuilder.InfoEntry 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<FSTBuilder.InfoEntry>
-
-