Package morfologik.fsa.builders
Enum FSABuilder.InfoEntry
- java.lang.Object
-
- java.lang.Enum<FSABuilder.InfoEntry>
-
- morfologik.fsa.builders.FSABuilder.InfoEntry
-
- All Implemented Interfaces:
Serializable
,Comparable<FSABuilder.InfoEntry>
- Enclosing class:
- FSABuilder
public static enum FSABuilder.InfoEntry extends Enum<FSABuilder.InfoEntry>
Debug and information constants.- See Also:
FSABuilder.getInfo()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSTANT_ARC_AUTOMATON_SIZE
ESTIMATED_MEMORY_CONSUMPTION_MB
MAX_ACTIVE_PATH_LENGTH
SERIALIZATION_BUFFER_REALLOCATIONS
SERIALIZATION_BUFFER_SIZE
STATE_REGISTRY_SIZE
STATE_REGISTRY_TABLE_SLOTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static FSABuilder.InfoEntry
valueOf(String name)
Returns the enum constant of this type with the specified name.static FSABuilder.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 FSABuilder.InfoEntry SERIALIZATION_BUFFER_SIZE
-
SERIALIZATION_BUFFER_REALLOCATIONS
public static final FSABuilder.InfoEntry SERIALIZATION_BUFFER_REALLOCATIONS
-
CONSTANT_ARC_AUTOMATON_SIZE
public static final FSABuilder.InfoEntry CONSTANT_ARC_AUTOMATON_SIZE
-
MAX_ACTIVE_PATH_LENGTH
public static final FSABuilder.InfoEntry MAX_ACTIVE_PATH_LENGTH
-
STATE_REGISTRY_TABLE_SLOTS
public static final FSABuilder.InfoEntry STATE_REGISTRY_TABLE_SLOTS
-
STATE_REGISTRY_SIZE
public static final FSABuilder.InfoEntry STATE_REGISTRY_SIZE
-
ESTIMATED_MEMORY_CONSUMPTION_MB
public static final FSABuilder.InfoEntry ESTIMATED_MEMORY_CONSUMPTION_MB
-
-
Method Detail
-
values
public static FSABuilder.InfoEntry[] 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 (FSABuilder.InfoEntry c : FSABuilder.InfoEntry.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FSABuilder.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:
toString
in classEnum<FSABuilder.InfoEntry>
-
-