Package net.sf.basedb.core
Enum Class Formula.Parser
- All Implemented Interfaces:
Serializable
,Comparable<Formula.Parser>
,Constable
- Enclosing class:
- Formula
The parser used to parse the formula.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final String
private final int
private static final Map<Integer,
Formula.Parser> Maps the integer that is stored in the database. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Formula.Parser
fromValue
(int value) Get theFormula.Parser
object when you know the integer code.int
getValue()
Get the integer value that is used when storing aFormula.Parser
in the database.toString()
static Formula.Parser
Returns the enum constant of this class with the specified name.static Formula.Parser[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JEP
Use the JEP parser.
-
-
Field Details
-
valueMapping
Maps the integer that is stored in the database. -
value
private final int value -
displayValue
-
-
Constructor Details
-
Parser
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
fromValue
Get theFormula.Parser
object when you know the integer code.- Parameters:
value
- The integer value.- Returns:
- The type object or null if the value is unknown
-
toString
- Overrides:
toString
in classEnum<Formula.Parser>
-
getValue
public int getValue()Get the integer value that is used when storing aFormula.Parser
in the database.- Returns:
- The integer value of this type
-