Package net.ontopia.utils
Interface FilterIF<T>
-
- All Known Implementing Classes:
DeciderFilter
public interface FilterIF<T>
INTERNAL: Filters the objects in an iterator.Classes implementing the filter method of this interface must return a collection containing a subset of the elements in the iterator given to it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<T>
filter(Iterator<T> objects)
INTERNAL: Filters the input iterator and returns a collection containing a subset of the iterator's elements.
-
-
-
Method Detail
-
filter
Collection<T> filter(Iterator<T> objects)
INTERNAL: Filters the input iterator and returns a collection containing a subset of the iterator's elements.
-
-