Uses of Interface
uk.co.jezuk.mango.BinaryPredicate

Uses of BinaryPredicate in uk.co.jezuk.mango
 

Methods in uk.co.jezuk.mango that return BinaryPredicate
static BinaryPredicate Predicates.EqualTo()
          BinaryPredicate testing for equality.
static BinaryPredicate Predicates.GreaterThan()
          BinaryPredicate that returns true if x is greater than y.
static BinaryPredicate Predicates.GreaterThanEquals()
          BinaryPredicate that returns true if x is greater than or equal to y.
static BinaryPredicate Predicates.LessThan()
          BinaryPredicate that returns true if x is less than y.
static BinaryPredicate Predicates.LessThanEquals()
          BinaryPredicate that returns true if x is less than or equal to y.
static BinaryPredicate Predicates.NotEqualTo()
          true if not(x.equals(y)), (x == null) && not(y == null) or not(x == null) && (y == null)
static BinaryPredicate Predicates.Not(BinaryPredicate pred)
          A BinaryPredicate which is the logical negation of some other BinaryPredicate.
static BinaryPredicate Predicates.And(BinaryPredicate pred1, BinaryPredicate pred2)
          A BinaryPredicate which returns the logical AND of two other BinaryPredicate.
static BinaryPredicate Predicates.Or(BinaryPredicate pred1, BinaryPredicate pred2)
          A BinaryPredicate which returns the logical OR of two other BinaryPredicate.
static BinaryPredicate Mango.EqualTo()
          Deprecated. BinaryPredicate testing for equality.
static BinaryPredicate Mango.GreaterThan()
          Deprecated. BinaryPredicate that returns true if x is greater than y.
static BinaryPredicate Mango.GreaterThanEquals()
          Deprecated. BinaryPredicate that returns true if x is greater than or equal to y.
static BinaryPredicate Mango.LessThan()
          Deprecated. BinaryPredicate that returns true if x is less than y.
static BinaryPredicate Mango.LessThanEquals()
          Deprecated. BinaryPredicate that returns true if x is less than or equal to y.
static BinaryPredicate Mango.NotEqualTo()
          Deprecated. true if not(x.equals(y)), (x == null) && not(y == null) or not(x == null) && (y == null)
static BinaryPredicate Mango.Not(BinaryPredicate pred)
          Deprecated. A BinaryPredicate which is the logical negation of some other BinaryPredicate.
static BinaryPredicate Mango.And(BinaryPredicate pred1, BinaryPredicate pred2)
          Deprecated. A BinaryPredicate which returns the logical AND of two other BinaryPredicate.
static BinaryPredicate Mango.Or(BinaryPredicate pred1, BinaryPredicate pred2)
          Deprecated. A BinaryPredicate which returns the logical OR of two other BinaryPredicate.
 

Methods in uk.co.jezuk.mango with parameters of type BinaryPredicate
static BinaryPredicate Predicates.Not(BinaryPredicate pred)
          A BinaryPredicate which is the logical negation of some other BinaryPredicate.
static BinaryPredicate Predicates.And(BinaryPredicate pred1, BinaryPredicate pred2)
          A BinaryPredicate which returns the logical AND of two other BinaryPredicate.
static BinaryPredicate Predicates.Or(BinaryPredicate pred1, BinaryPredicate pred2)
          A BinaryPredicate which returns the logical OR of two other BinaryPredicate.
static BinaryPredicate Mango.Not(BinaryPredicate pred)
          Deprecated. A BinaryPredicate which is the logical negation of some other BinaryPredicate.
static BinaryPredicate Mango.And(BinaryPredicate pred1, BinaryPredicate pred2)
          Deprecated. A BinaryPredicate which returns the logical AND of two other BinaryPredicate.
static BinaryPredicate Mango.Or(BinaryPredicate pred1, BinaryPredicate pred2)
          Deprecated. A BinaryPredicate which returns the logical OR of two other BinaryPredicate.
static Predicate Bind.First(BinaryPredicate p, java.lang.Object c)
          Special case which adapts a BinaryPredicate to a Predicate.
static Predicate Bind.Second(BinaryPredicate p, java.lang.Object c)
          Special case which adapts a BinaryPredicate to a Predicate.
 



Copyright © 2002-2006 JezUK Ltd.