public interface FilterIF<T>
Classes implementing the filter method of this interface must return a collection containing a subset of the elements in the iterator given to it.
Modifier and Type | Method and Description |
---|---|
Collection<T> |
filter(Iterator<T> objects)
INTERNAL: Filters the input iterator and returns a collection
containing a subset of the iterator's elements.
|
Collection<T> filter(Iterator<T> objects)