Uses of Class
com.googlecode.aviator.lexer.token.Token.TokenType
-
Packages that use Token.TokenType Package Description com.googlecode.aviator.code com.googlecode.aviator.code.interpreter com.googlecode.aviator.lexer.token -
-
Uses of Token.TokenType in com.googlecode.aviator.code
Methods in com.googlecode.aviator.code with parameters of type Token.TokenType Modifier and Type Method Description private boolean
OptimizeCodeGenerator. isLiteralOperand(Token<?> token, Token.TokenType tokenType, int index, java.util.Map<java.lang.Integer,DelegateToken.DelegateTokenType> index2DelegateType)
-
Uses of Token.TokenType in com.googlecode.aviator.code.interpreter
Fields in com.googlecode.aviator.code.interpreter with type parameters of type Token.TokenType Modifier and Type Field Description private static java.util.Set<Token.TokenType>
InterpretCodeGenerator. LOAD_CONSTANTS_TYPE
-
Uses of Token.TokenType in com.googlecode.aviator.lexer.token
Methods in com.googlecode.aviator.lexer.token that return Token.TokenType Modifier and Type Method Description Token.TokenType
CharToken. getType()
Token.TokenType
DelegateToken. getType()
Token.TokenType
NumberToken. getType()
Token.TokenType
OperatorToken. getType()
Token.TokenType
PatternToken. getType()
Token.TokenType
StringToken. getType()
Token.TokenType
Token. getType()
Token.TokenType
Variable. getType()
static Token.TokenType
Token.TokenType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Token.TokenType[]
Token.TokenType. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-