Class ExprParser.Token

java.lang.Object
oracle.rules.sdk2.ruleset.ExprParser.Token
Enclosing class:
ExprParser

public class ExprParser.Token extends Object
Token represents a lexeme in a parsed expression. Includes the token value, type, and error, if any.
  • Method Details

    • getToken

      public String getToken()
      Returns the value of the token. For string literals, includes quotes. For identifiers, includes qualification.
      Returns:
      the value of the token
    • getType

      public final int getType()
      Returns:
      The type of this token, @see TOKEN_IDENTIFIER
    • getID

      public final DOID getID()
    • getFirstChild

      public ExprParser.Token getFirstChild()
      Get first child token of this token.
      Returns:
      Token
    • getNextSibling

      public ExprParser.Token getNextSibling()
      Get next sibling token of this token.
      Returns:
      Token
    • getLiteralValue

      public String getLiteralValue()
      Get the literal value of this token.
      Returns:
      null if no literal value
    • getTypeID

      public final DOID getTypeID()
      Get the ID of the Type of this token.
      Returns:
      DOID