A C G I L R S T U V

A

ASSIGN - Static variable in class Token
Assignment Token type.

C

COMMA - Static variable in class Token
Comma Token type.

G

getType() - Method in class Token
Get the type of the Token.
getValue() - Method in class Token
Get the value of the Token..

I

IDENTIFIER - Static variable in class Token
Identifier Token type.

L

LEFT_PAREN - Static variable in class Token
Left parenthesis Token type.

R

RIGHT_PAREN - Static variable in class Token
Right parenthesis Token type.

S

SEMICOLON - Static variable in class Token
Semicolon Token type.
STRING - Static variable in class Token
String Token type.

T

Token - class Token.
Class Token describes a lexical entity in the input.
Token(int, String) - Constructor for class Token
Creates a new Token with the given type and value.
toString() - Method in class Token
Constructs a string representation of this Token.
type - Variable in class Token
The type of this Token.

U

UNKNOWN - Static variable in class Token
Unknown Token type.

V

value - Variable in class Token
The (possibly empty) string value of this Token.

A C G I L R S T U V