Negation Filter
public final class NegationFilter<TInput extends Object> implements IFilter<TInput, Unit>, Iterable<IFilter<TInput, ?>>(source)
A filter, which returns null
, if filter returns a non-null value, and returns a non-null value, if filter returns null
.
Parameters
TInput
The type the filter accepts
filter
The filter to negate