-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Filter<T>
Filter to test to elements against.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Filter<T>and(Filter<T> filter)Combine this filter with another using logical ANDdefault Filter<T>negate()Negate this filter.default Filter<T>or(Filter<T> filter)Combine this filter with another using logical ORbooleantest(T t)Predicate test
-