public enum TokenType extends java.lang.Enum<TokenType>
Lexer
,
Syntaxer
,
TokenTree
Modifier and Type | Field and Description |
---|---|
java.lang.String |
pattern |
Modifier and Type | Method and Description |
---|---|
static TokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenType COMMENTSLN
public static final TokenType COMMENTS
public static final TokenType WHITESPACE
public static final TokenType kwDEFINEASC
public static final TokenType kwDEFINEDESC
public static final TokenType kwDEFINE
public static final TokenType kwAS
public static final TokenType kwIN
public static final TokenType kwIS
public static final TokenType kwLENGTH
public static final TokenType kwST
public static final TokenType pLBRACKET
public static final TokenType pRBRACKET
public static final TokenType pCOMMA
public static final TokenType pDLBRACKET
public static final TokenType pDRBRACKET
public static final TokenType oVERTICAL
public static final TokenType oSTAR
public static final TokenType oPLUS
public static final TokenType oUNION
public static final TokenType oDOT
public static final TokenType ID
public static final TokenType NUMBER
public static final TokenType UNKNOWN
public static final TokenType FuzzyDefineBlock
public static final TokenType FuzzyRelationshipBlock
public static final TokenType FuzzyConditionsBlock
public static final TokenType CypherBlock
public static final TokenType FuzzyRegularExpressionBlock
public static final TokenType DefineBlock
public static final TokenType DefineAscOrDescBlock
public static final TokenType QueryBlock
public static final TokenType RelationshipBlock
public static final TokenType ConditionBlock
public static final TokenType ErrorToken
public static final TokenType Expression
public static final TokenType Group
public static final TokenType GroupOrId
public static final TokenType StarOrPlusExpression
public static TokenType[] values()
for (TokenType c : TokenType.values()) System.out.println(c);
public static TokenType 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