com.jeffpalm.basic.compiler
Class Token.Type

java.lang.Object
  extended by com.jeffpalm.basic.compiler.Token.Type
Enclosing class:
Token

public static final class Token.Type
extends java.lang.Object


Field Summary
static Token.Type COMMA
           
static Token.Type CR
           
static Token.Type DIV
           
static Token.Type EOF
           
static Token.Type EQ
           
static Token.Type GE
           
static Token.Type GT
           
static Token.Type KEYWORD
           
static Token.Type LE
           
static Token.Type LPAREN
           
static Token.Type LT
           
static Token.Type MINUS
           
static Token.Type MUL
           
static Token.Type NAME
           
static Token.Type NE
           
static Token.Type NUMBER
           
static Token.Type PLUS
           
static Token.Type RPAREN
           
static Token.Type STRING
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

LPAREN

public static final Token.Type LPAREN

RPAREN

public static final Token.Type RPAREN

COMMA

public static final Token.Type COMMA

CR

public static final Token.Type CR

EQ

public static final Token.Type EQ

NE

public static final Token.Type NE

GT

public static final Token.Type GT

LT

public static final Token.Type LT

GE

public static final Token.Type GE

LE

public static final Token.Type LE

PLUS

public static final Token.Type PLUS

MINUS

public static final Token.Type MINUS

MUL

public static final Token.Type MUL

DIV

public static final Token.Type DIV

KEYWORD

public static final Token.Type KEYWORD

NUMBER

public static final Token.Type NUMBER

NAME

public static final Token.Type NAME

STRING

public static final Token.Type STRING

EOF

public static final Token.Type EOF
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object