T
- type of object being filtered.public class NegationPredicate<T> extends Object implements Predicate<T>
Predicate
.Constructor and Description |
---|
NegationPredicate(Predicate<T> innerFilter)
Construct with the given filter.
|
Modifier and Type | Method and Description |
---|---|
boolean |
test(T object)
Tests whether a specific object passes some criteria.
|
public NegationPredicate(Predicate<T> innerFilter)
innerFilter
- the filter that this filter negates.