[+/-]
PredicateOperand represents a column or parameter that can be compared to another
public interface com.mysql.clusterj.query.PredicateOperand {
// Public Methodspublic com.mysql.clusterj.query.Predicate between(com.mysql.clusterj.query.PredicateOperand lower,
com.mysql.clusterj.query.PredicateOperand upper);public com.mysql.clusterj.query.Predicate equal(com.mysql.clusterj.query.PredicateOperand other);
public com.mysql.clusterj.query.Predicate greaterEqual(com.mysql.clusterj.query.PredicateOperand other);
public com.mysql.clusterj.query.Predicate greaterThan(com.mysql.clusterj.query.PredicateOperand other);
public com.mysql.clusterj.query.Predicate in(com.mysql.clusterj.query.PredicateOperand other);
public com.mysql.clusterj.query.Predicate lessEqual(com.mysql.clusterj.query.PredicateOperand other);
public com.mysql.clusterj.query.Predicate lessThan(com.mysql.clusterj.query.PredicateOperand other);
}
public com.mysql.clusterj.query.Predicate between(com.mysql.clusterj.query.PredicateOperand lower,
com.mysql.clusterj.query.PredicateOperand upper);
Return a Predicate representing comparing this to another using "between" semantics.
Parameters | |
lower |
another PredicateOperand |
upper |
another PredicateOperand |
return |
a new Predicate |
public com.mysql.clusterj.query.Predicate equal(com.mysql.clusterj.query.PredicateOperand other);
Return a Predicate representing comparing this to another using "equal to" semantics.
Parameters | |
other |
the other PredicateOperand |
return |
a new Predicate |
public com.mysql.clusterj.query.Predicate greaterEqual(com.mysql.clusterj.query.PredicateOperand other);
Return a Predicate representing comparing this to another using "greater than or equal to" semantics.
Parameters | |
other |
the other PredicateOperand |
return |
a new Predicate |
public com.mysql.clusterj.query.Predicate greaterThan(com.mysql.clusterj.query.PredicateOperand other);
Return a Predicate representing comparing this to another using "greater than" semantics.
Parameters | |
other |
the other PredicateOperand |
return |
a new Predicate |
public com.mysql.clusterj.query.Predicate in(com.mysql.clusterj.query.PredicateOperand other);
Return a Predicate representing comparing this to a collection of values using "in" semantics.
Parameters | |
other |
another PredicateOperand |
return |
a new Predicate |
public com.mysql.clusterj.query.Predicate lessEqual(com.mysql.clusterj.query.PredicateOperand other);
Return a Predicate representing comparing this to another using "less than or equal to" semantics.
Parameters | |
other |
the other PredicateOperand |
return |
a new Predicate |