Class FilteringIterator<T>

java.lang.Object
apoc.util.collection.PrefetchingIterator<T>
apoc.util.collection.FilteringIterator<T>
Type Parameters:
T - the type of items in the iteration.
All Implemented Interfaces:
Iterator<T>

public class FilteringIterator<T> extends PrefetchingIterator<T>
An iterator which filters another iterator, only letting items with certain criteria pass through. All iteration/filtering is done lazily.