private static enum ExpressionParser.ParserState extends java.lang.Enum<ExpressionParser.ParserState>
| Enum Constant and Description |
|---|
FLOAT_NUMBER |
HEX_NUMBER |
NUMBER |
OPERATOR |
SPECIAL_CHAR |
STRING |
VALUE_OR_FUNCTION |
WAIT |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionParser.ParserState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionParser.ParserState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionParser.ParserState WAIT
public static final ExpressionParser.ParserState NUMBER
public static final ExpressionParser.ParserState HEX_NUMBER
public static final ExpressionParser.ParserState FLOAT_NUMBER
public static final ExpressionParser.ParserState STRING
public static final ExpressionParser.ParserState SPECIAL_CHAR
public static final ExpressionParser.ParserState VALUE_OR_FUNCTION
public static final ExpressionParser.ParserState OPERATOR
public static ExpressionParser.ParserState[] values()
for (ExpressionParser.ParserState c : ExpressionParser.ParserState.values()) System.out.println(c);
public static ExpressionParser.ParserState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null