public enum SymbolType extends java.lang.Enum<SymbolType>
Enum Constant and Description |
---|
COMMA |
CURLY_BRACKET_CLOSE |
CURLY_BRACKET_OPEN |
EQUALS |
FUNCTION_NAME |
PARENTHESIS_CLOSE |
PARENTHESIS_OPEN |
SPACE |
SQUARE_BRACKET_CLOSE |
SQUARE_BRACKET_OPEN |
STRING_QUOTED |
STRING_SIMPLE |
TWO_POINTS |
Modifier and Type | Method and Description |
---|---|
static SymbolType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SymbolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymbolType STRING_SIMPLE
public static final SymbolType STRING_QUOTED
public static final SymbolType FUNCTION_NAME
public static final SymbolType SQUARE_BRACKET_OPEN
public static final SymbolType SQUARE_BRACKET_CLOSE
public static final SymbolType CURLY_BRACKET_OPEN
public static final SymbolType CURLY_BRACKET_CLOSE
public static final SymbolType PARENTHESIS_OPEN
public static final SymbolType PARENTHESIS_CLOSE
public static final SymbolType TWO_POINTS
public static final SymbolType EQUALS
public static final SymbolType COMMA
public static final SymbolType SPACE
public static SymbolType[] values()
for (SymbolType c : SymbolType.values()) System.out.println(c);
public static SymbolType 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