Interface CollectionFilter<T>

Type Parameters:
T - the collection element type.
All Known Implementing Classes:
AcceptOnceCollectionFilter
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 CollectionFilter<T>
Base strategy for filtering out a subset of a Collection of elements.
Since:
2.1
  • Method Summary

    Modifier and Type Method Description
    java.util.Collection<T> filter​(java.util.Collection<T> unfilteredElements)  
  • Method Details

    • filter

      java.util.Collection<T> filter​(java.util.Collection<T> unfilteredElements)