Uses of Class
jaggregate.BinaryPredicate

Packages that use BinaryPredicate
jaggregate Jaggregate is a J2SE 5.0-aware collections library that is modeled after the ANSI Smalltalk collection protocols. 
 

Uses of BinaryPredicate in jaggregate
 

Methods in jaggregate that return BinaryPredicate
 BinaryPredicate<A1,A2> BinaryPredicate.and(BinaryPredicate<? super A1,? super A2> other)
          Answers a predicate that represents the logical conjunction of this predicate and another predicate.
 BinaryPredicate<A1,A2> BinaryPredicate.not()
          Answers a predicate that represents the logical inverse of this predicate; wherever this predicate's matches method would answer true, the inverse answers false; and vice versa.
static
<T,U> BinaryPredicate<T,U>
BinaryPredicate.not(BinaryPredicate<T,U> predicate)
          Answers a predicate that represents the logical inverse of the given predicate; wherever the given predicate's matches method would answer true, the inverse answers false; and vice versa.
 BinaryPredicate<A1,A2> BinaryPredicate.or(BinaryPredicate<? super A1,? super A2> other)
          Answers a predicate that represents the logical disjunction of this predicate and another predicate.
 BinaryPredicate<A1,A2> BinaryPredicate.xor(BinaryPredicate<? super A1,? super A2> other)
          Answers a predicate that represents the logical exclusive disjunction of this predicate and another predicate.
 

Methods in jaggregate with parameters of type BinaryPredicate
 BinaryPredicate<A1,A2> BinaryPredicate.and(BinaryPredicate<? super A1,? super A2> other)
          Answers a predicate that represents the logical conjunction of this predicate and another predicate.
static
<T,U> BinaryPredicate<T,U>
BinaryPredicate.not(BinaryPredicate<T,U> predicate)
          Answers a predicate that represents the logical inverse of the given predicate; wherever the given predicate's matches method would answer true, the inverse answers false; and vice versa.
 BinaryPredicate<A1,A2> BinaryPredicate.or(BinaryPredicate<? super A1,? super A2> other)
          Answers a predicate that represents the logical disjunction of this predicate and another predicate.
 BinaryPredicate<A1,A2> BinaryPredicate.xor(BinaryPredicate<? super A1,? super A2> other)
          Answers a predicate that represents the logical exclusive disjunction of this predicate and another predicate.
 



© Copyright 2004-2008 Paul R. Holser, Jr. All rights reserved. Licensed under the Academic Free License version 3.0. pholser@alumni.rice.edu