Class EJBQLPath

java.lang.Object
org.apache.cayenne.ejbql.parser.SimpleNode
org.apache.cayenne.ejbql.parser.EJBQLPath
All Implemented Interfaces:
Serializable, EJBQLExpression, Node
Direct Known Subclasses:
EJBQLDbPath

public class EJBQLPath extends SimpleNode
Since:
3.0
See Also:
  • Constructor Details

    • EJBQLPath

      public EJBQLPath(int id)
  • Method Details

    • getId

      public String getId()
    • getRelativePath

      public String getRelativePath()
    • getAbsolutePath

      public String getAbsolutePath()
    • visitNode

      protected boolean visitNode(EJBQLExpressionVisitor visitor)
      Description copied from class: SimpleNode
      Visits this node without recursion. Default implementation simply returns true. Subclasses override this method to call an appropriate visitor method.
      Overrides:
      visitNode in class SimpleNode
    • visitChild

      protected boolean visitChild(EJBQLExpressionVisitor visitor, int childIndex)
      Description copied from class: SimpleNode
      Recursively visits a child at the specified index. Subclasses override this method if they desire to implement callbacks after visiting each child.
      Overrides:
      visitChild in class SimpleNode