org.apache.commons.collections.functors
public final class AllPredicate extends Object implements Predicate, PredicateDecorator, Serializable
Since: Commons Collections 3.0
Version: $Revision: 1.6 $ $Date: 2004/05/31 16:43:17 $
| Constructor Summary | |
|---|---|
| AllPredicate(Predicate[] predicates)
Constructor that performs no validation.
| |
| Method Summary | |
|---|---|
| boolean | evaluate(Object object)
Evaluates the predicate returning true if all predicates return true.
|
| static Predicate | getInstance(Predicate[] predicates)
Factory to create the predicate.
|
| static Predicate | getInstance(Collection predicates)
Factory to create the predicate.
|
| Predicate[] | getPredicates()
Gets the predicates, do not modify the array.
|
getInstance if you want that.
Parameters: predicates the predicates to check, not cloned, not null
Parameters: object the input object
Returns: true if all decorated predicates return true
Parameters: predicates the predicates to check, cloned, not null
Returns: the all predicate
Throws: IllegalArgumentException if the predicates array is null IllegalArgumentException if the predicates array has less than 2 elements IllegalArgumentException if any predicate in the array is null
Parameters: predicates the predicates to check, cloned, not null
Returns: the all predicate
Throws: IllegalArgumentException if the predicates array is null IllegalArgumentException if any predicate in the array is null IllegalArgumentException if the predicates array has less than 2 elements
Returns: the predicates
Since: Commons Collections 3.1