Uses of Class
sjm.parse.tokens.TokenType

Packages that use TokenType
org.jsesoft.jpp
org.jsesoft.jpp: A Java macro preprocessor Title: A Java macro preprocessor.
sjm.parse.tokens   
 

Uses of TokenType in org.jsesoft.jpp
 

Subclasses of TokenType in org.jsesoft.jpp
 class TokenType
          Instances of the class describe types of tokens.
 

Constructors in org.jsesoft.jpp with parameters of type TokenType
Token(TokenType tokenType, java.lang.String value)
           
Token(TokenType tokenType, java.lang.String value, java.lang.Object number)
           
 

Uses of TokenType in sjm.parse.tokens
 

Fields in sjm.parse.tokens declared as TokenType
protected  TokenType Token.ttype
           
static TokenType Token.TT_EOF
          A constant indicating that the end of the stream has been read.
static TokenType Token.TT_NUMBER
          A constant indicating that a token is a number, like 3.14
static TokenType Token.TT_WORD
          A constant indicating a token is a word, like "cat"
static TokenType Token.TT_SYMBOL
          A constant indicating that a token is a symbol like "<=".
static TokenType Token.TT_QUOTED
          A constant indicating that a token is a quoted string, like "Launch Mi".
 

Methods in sjm.parse.tokens that return TokenType
 TokenType Token.ttype()
          Returns the type of this token.
 

Constructors in sjm.parse.tokens with parameters of type TokenType
Token(TokenType ttype, java.lang.String sval, double nval)
          Constructs a token of the indicated type and associated string or numeric values.