Uses of Class
org.basex.query.regex.parse.Token

Packages that use Token
org.basex.query.regex.parse This module contains JavaCC-generated classes for parsing XSD regular expressions. 
 

Uses of Token in org.basex.query.regex.parse
 

Fields in org.basex.query.regex.parse declared as Token
 Token ParseException.currentToken
          This is the last token that has been consumed successfully.
 Token RegExParser.jj_nt
          Next token.
 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 RegExParser.token
          Current token.
 

Methods in org.basex.query.regex.parse that return Token
 Token RegExLexer.getNextToken()
           
 Token TokenManager.getNextToken()
          This gets the next token from the input stream.
 Token RegExParser.getNextToken()
          Get the next Token.
 Token RegExParser.getToken(int index)
          Get the specific Token.
static Token Token.newToken(int k)
          Creates a token without image string.
static Token Token.newToken(int k, java.lang.String img)
          Returns a new Token object, by default.
 

Constructors in org.basex.query.regex.parse with parameters of type Token
ParseException(Token curr, int[][] exps, java.lang.String[] imgs)
          This constructor is used by the method "generateParseException" in the generated parser.