Class Identifier


public class Identifier extends Expression
  • Constructor Details

    • Identifier

      public Identifier(NodeLocation location, String value, boolean delimited)
    • Identifier

      public Identifier(String value, boolean delimited)
    • Identifier

      public Identifier(String value)
  • Method Details

    • getValue

      public String getValue()
    • isDelimited

      public boolean isDelimited()
    • getCanonicalValue

      public String getCanonicalValue()
    • accept

      public <R, C> R accept(AstVisitor<R,C> visitor, C context)
      Description copied from class: Expression
      Accessible for AstVisitor, use AstVisitor.process(Node, Object) instead.
      Overrides:
      accept in class Expression
    • getChildren

      public List<Node> getChildren()
      Specified by:
      getChildren in class Node
    • equals

      public boolean equals(Object o)
      Specified by:
      equals in class Node
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in class Node
    • shallowEquals

      public boolean shallowEquals(Node other)
      Description copied from class: Node
      Compare with another node by considering internal state excluding any Node returned by getChildren()
      Overrides:
      shallowEquals in class Node