Class ASTDbIdPath

All Implemented Interfaces:
Serializable, Node, XMLSerializable

public class ASTDbIdPath extends ASTDbPath
Since:
4.2
See Also:
  • Field Details

  • Constructor Details

    • ASTDbIdPath

      public ASTDbIdPath()
    • ASTDbIdPath

      public ASTDbIdPath(Object value)
  • Method Details

    • shallowCopy

      public Expression shallowCopy()
      Creates a copy of this expression node, without copying children.
      Overrides:
      shallowCopy in class ASTDbPath
    • evaluateNode

      protected Object evaluateNode(Object o, String localPath)
    • evaluateNode

      protected Object evaluateNode(Object o)
      Description copied from class: SimpleNode
      Evaluates itself with object, pushing result on the stack.
      Overrides:
      evaluateNode in class ASTDbPath
    • evaluateEntityNode

      protected CayenneMapEntry evaluateEntityNode(Entity entity)
      Description copied from class: ASTDbPath
      Helper method to evaluate path expression with Cayenne Entity.
      Overrides:
      evaluateEntityNode in class ASTDbPath
    • toMap

      protected Map<?,?> toMap(Object o)
      Overrides:
      toMap in class ASTDbPath
    • getType

      public int getType()
      Description copied from class: Expression
      Returns a type of expression. Most common types are defined as public static fields of this interface.
      Overrides:
      getType in class ASTDbPath
    • appendAsEJBQL

      public void appendAsEJBQL(List<Object> parameterAccumulator, Appendable out, String rootId) throws IOException
      Description copied from class: Expression
      Stores a String representation of Expression as EJBQL using a provided PrintWriter. DB path expressions produce non-standard EJBQL path expressions. If the parameterAccumulator is supplied then as the EJBQL is output, it may load parameters into this list. In this case, the EJBQL output will contain reference to positional parameters. If no parameterAccumulator is supplied and a scalar type is encountered for which there is no EJBQL literal representation (such as dates) then this method will throw a runtime exception to indicate that it was not possible to generate a string-only representation of the Expression in EJBQL.
      Overrides:
      appendAsEJBQL in class ASTDbPath
      Throws:
      IOException
    • appendAsString

      public void appendAsString(Appendable out) throws IOException
      Description copied from class: Expression
      Appends own content as a String to the provided Appendable.
      Overrides:
      appendAsString in class ASTDbPath
      Throws:
      IOException