Class NonePredicate<T>
java.lang.Object
org.apache.commons.collections4.functors.AbstractQuantifierPredicate<T>
org.apache.commons.collections4.functors.NonePredicate<T>
- All Implemented Interfaces:
Serializable
,Predicate<T>
,PredicateDecorator<T>
,Predicate<T>
Predicate implementation that returns true if none of the
predicates return true.
If the array of predicates is empty, then this predicate returns true.
NOTE: In versions prior to 3.2 an array size of zero or one threw an exception.
- Since:
- 3.0
- See Also:
-
Field Summary
Fields inherited from class org.apache.commons.collections4.functors.AbstractQuantifierPredicate
iPredicates
-
Constructor Summary
ConstructorDescriptionNonePredicate
(Predicate<? super T>... predicates) Constructor that performs no validation. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Evaluates the predicate returning false if any stored predicate returns false.static <T> Predicate<T>
nonePredicate
(Collection<? extends Predicate<? super T>> predicates) Factory to create the predicate.static <T> Predicate<T>
nonePredicate
(Predicate<? super T>... predicates) Factory to create the predicate.Methods inherited from class org.apache.commons.collections4.functors.AbstractQuantifierPredicate
getPredicates
-
Constructor Details
-
NonePredicate
Constructor that performs no validation. UsenonePredicate
if you want that.- Parameters:
predicates
- the predicates to check, not cloned, not null
-
-
Method Details
-
nonePredicate
Factory to create the predicate.If the collection is size zero, the predicate always returns true.
- Type Parameters:
T
- the type that the predicate queries- Parameters:
predicates
- the predicates to check, cloned, not null- Returns:
- the
one
predicate - Throws:
NullPointerException
- if the predicates array is nullNullPointerException
- if any predicate in the array is null
-
nonePredicate
Factory to create the predicate.If the array is size zero, the predicate always returns true.
- Type Parameters:
T
- the type that the predicate queries- Parameters:
predicates
- the predicates to check, cloned, not null- Returns:
- the
any
predicate - Throws:
NullPointerException
- if the predicates array is nullNullPointerException
- if any predicate in the array is null
-
evaluate
Evaluates the predicate returning false if any stored predicate returns false.- Parameters:
object
- the input object- Returns:
- true if none of decorated predicates return true
-