| MySQL 5.6.14 Source Code Document
    | 

| Public Member Functions | |
| Predicate | or (Predicate predicate) | 
| Predicate | and (Predicate predicate) | 
| Predicate | not () | 
Used to combine multiple predicates with boolean operations.
Definition at line 24 of file Predicate.java.
Combine this Predicate with another, using the "and" semantic.
| predicate | the other predicate | 
Implemented in com.mysql.clusterj.core.query.PredicateImpl, and com.mysql.clusterj.core.query.AndPredicateImpl.
| Predicate com.mysql.clusterj.query.Predicate.not | ( | ) | 
Negate this Predicate.
Implemented in com.mysql.clusterj.core.query.PredicateImpl, and com.mysql.clusterj.core.query.AndPredicateImpl.

Combine this Predicate with another, using the "or" semantic.
| predicate | the other predicate | 
Implemented in com.mysql.clusterj.core.query.AndPredicateImpl, com.mysql.clusterj.core.query.PredicateImpl, and com.mysql.clusterj.core.query.OrPredicateImpl.