public final class NotPredicate<T> extends Object implements PredicateDecorator<T>, Serializable
Constructor and Description |
---|
NotPredicate(Predicate<? super T> predicate)
Constructor that performs no validation.
|
Modifier and Type | Method and Description |
---|---|
boolean |
evaluate(T object)
Evaluates the predicate returning the opposite to the stored predicate.
|
Predicate<? super T>[] |
getPredicates()
Gets the predicate being decorated.
|
static <T> Predicate<T> |
notPredicate(Predicate<? super T> predicate)
Factory to create the not predicate.
|
public NotPredicate(Predicate<? super T> predicate)
notPredicate
if you want that.predicate
- the predicate to call after the null checkpublic static <T> Predicate<T> notPredicate(Predicate<? super T> predicate)
T
- the type that the predicate queriespredicate
- the predicate to decorate, not nullNullPointerException
- if the predicate is nullpublic boolean evaluate(T object)
public Predicate<? super T>[] getPredicates()
getPredicates
in interface PredicateDecorator<T>
Copyright © 2001–2019 The Apache Software Foundation. All rights reserved.