Uses of Class
com.jstatcom.parser.Token

Packages that use Token
com.jstatcom.parser Various parsers generated by JavaCC. 
 

Uses of Token in com.jstatcom.parser
 

Fields in com.jstatcom.parser declared as Token
 Token ParseException.currentToken
          This is the last token that has been consumed successfully.
 Token TSDateParser.jj_nt
           
 Token NumberRangeParser.jj_nt
           
 Token MaturityParser.jj_nt
           
 Token CalcEngine.jj_nt
           
 Token Token.next
          A reference to the next regular (non-special) token from the input stream.
 Token Token.specialToken
          This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token.
 Token TSDateParser.token
           
 Token NumberRangeParser.token
           
 Token MaturityParser.token
           
 Token CalcEngine.token
           
 

Methods in com.jstatcom.parser that return Token
 Token TSDateParserTokenManager.getNextToken()
           
 Token TSDateParser.getNextToken()
           
 Token NumberRangeParserTokenManager.getNextToken()
           
 Token NumberRangeParser.getNextToken()
           
 Token MaturityParserTokenManager.getNextToken()
           
 Token MaturityParser.getNextToken()
           
 Token CalcEngineTokenManager.getNextToken()
           
 Token CalcEngine.getNextToken()
           
 Token TSDateParser.getToken(int index)
           
 Token NumberRangeParser.getToken(int index)
           
 Token MaturityParser.getToken(int index)
           
 Token CalcEngine.getToken(int index)
           
static Token Token.newToken(int ofKind)
          Returns a new Token object, by default.
 

Constructors in com.jstatcom.parser with parameters of type Token
ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
          This constructor is used by the method "generateParseException" in the generated parser.