Used to combine multiple predicates with boolean operations.
public interface com.mysql.clusterj.query.Predicate {
// Public Methodspublic com.mysql.clusterj.query.Predicate and(com.mysql.clusterj.query.Predicate predicate);
public com.mysql.clusterj.query.Predicate not();
public com.mysql.clusterj.query.Predicate or(com.mysql.clusterj.query.Predicate predicate);
}
public com.mysql.clusterj.query.Predicate and(com.mysql.clusterj.query.Predicate predicate);
Combine this Predicate with another, using the "and" semantic.
Parameters | |
predicate |
the other predicate |
return |
a new Predicate combining both Predicates |
public com.mysql.clusterj.query.Predicate not();
Negate this Predicate.
Parameters | |
return |
this predicate |