Class ASTFalse

  • All Implemented Interfaces:
    Serializable, Node, XMLSerializable

    public class ASTFalse
    extends ConditionNode
    Boolean false expression element Notice that there is one ASTTrue and one ASTFalse instead of a ASTBoolean with a Boolean value. The main reason for doing this is that a common ASTBoolean will have operand count of 1 and that will default to a prepared statement like " where ? and (...)", but we only need " where true and (...)".
    Since:
    3.0
    See Also:
    ASTTrue, Serialized Form
    • Constructor Detail

      • ASTFalse

        public ASTFalse()
    • Method Detail

      • 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 Expression
      • 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 SimpleNode
        Throws:
        IOException
        Since:
        4.0