public enum SqlLexerTokenType extends Enum<SqlLexerTokenType>
| Enum Constant and Description |
|---|
COMMA
Comma.
|
DEFAULT
Standard word.
|
DOT
Dot.
|
EOF
End of string.
|
MINUS
Minus sign.
|
PARENTHESIS_LEFT
Parenthesis: left.
|
PARENTHESIS_RIGHT
Parenthesis: right.
|
QUOTED
Quoted phrase.
|
SEMICOLON
Semicolon.
|
| Modifier and Type | Method and Description |
|---|---|
Character |
asChar() |
String |
asString() |
static SqlLexerTokenType |
forChar(char c)
Get token type for character.
|
static SqlLexerTokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlLexerTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlLexerTokenType DEFAULT
public static final SqlLexerTokenType QUOTED
public static final SqlLexerTokenType MINUS
public static final SqlLexerTokenType DOT
public static final SqlLexerTokenType COMMA
public static final SqlLexerTokenType PARENTHESIS_LEFT
public static final SqlLexerTokenType PARENTHESIS_RIGHT
public static final SqlLexerTokenType SEMICOLON
public static final SqlLexerTokenType EOF
public static SqlLexerTokenType[] values()
for (SqlLexerTokenType c : SqlLexerTokenType.values()) System.out.println(c);
public static SqlLexerTokenType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SqlLexerTokenType forChar(char c)
c - Character.public Character asChar()
public String asString()
Follow @ApacheIgnite
Ignite Fabric : ver. 2.4.0 Release Date : March 5 2018