DATATYPE - The type of object to filter.@FunctionalInterface public interface IFilter<DATATYPE> extends Serializable, Predicate<DATATYPE>
IFilterWithParameter instead. With Java 8 this is
basically a serializable Predicate.| Modifier and Type | Method and Description |
|---|---|
static <DATATYPE> IFilter<DATATYPE> |
all() |
default IFilter<DATATYPE> |
and(IFilter<? super DATATYPE> other) |
static <DATATYPE> IFilter<DATATYPE> |
isNull() |
default IFilter<DATATYPE> |
negate() |
static <DATATYPE> IFilter<DATATYPE> |
none() |
static <DATATYPE> IFilter<DATATYPE> |
notNull() |
default IFilter<DATATYPE> |
or(IFilter<? super DATATYPE> other) |
Copyright © 2014–2016 Philip Helger. All rights reserved.