org.azzyzt.jee.runtime.dto.query
Class And

java.lang.Object
  extended by org.azzyzt.jee.runtime.dto.query.Expression
      extended by org.azzyzt.jee.runtime.dto.query.BinaryBooleanExpression
          extended by org.azzyzt.jee.runtime.dto.query.And
All Implemented Interfaces:
java.io.Serializable, Node

public class And
extends BinaryBooleanExpression
implements java.io.Serializable

A binary boolean expression that is true when all its terms are true. An And can have any number of terms. And expressions in JPA criteria expressions otoh are strictly binary, thus the QueryBuilder converts an And with more than two terms in a cascade of JPA And expressions with two terms each.

See Also:
Serialized Form

Constructor Summary
And()
           
And(Expression... expressions)
           
 
Method Summary
 
Methods inherited from class org.azzyzt.jee.runtime.dto.query.BinaryBooleanExpression
add, getReplaceableBy, getTerms, isValid, setTerms, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

And

public And()

And

public And(Expression... expressions)