return (Predicate) new EqualPredicateImpl(dobj, this, (ParameterImpl)other);
}
public Predicate between(PredicateOperand lower, PredicateOperand upper) {
if (!((lower instanceof ParameterImpl) && (upper instanceof ParameterImpl))) {
throw new ClusterJUserException(
local.message("ERR_Only_Parameters", "between"));
}
return (Predicate) new BetweenPredicateImpl(dobj, this, (ParameterImpl)lower, (ParameterImpl)upper);
}