| Methods in net.sf.staccatocommons.defs.predicate that return Predicate2 |
Predicate2<A,B> |
Predicate2.and(Evaluable2<? super A,? super B> other)
Returns a predicate that performs a short-circuit logical-and between this
Predicate2's Evaluable2.eval(Object,Object) and other |
Predicate2<A,B> |
Predicate2.not()
Negates this Predicate |
Predicate2<A,B> |
Predicate2.nullSafe()
Answers a Predicate2 that returns true if both
arguments are null, false if only one of them is
null, or evalutes this predicate, otherwise. |
Predicate2<A,B> |
Predicate2.or(Evaluable2<? super A,? super B> other)
Returns a predicate that, performs a short-circuit logical-or between this
Predicate2's Evaluable2.eval(Object,Object) and other |