T - the type of items in the iteration.public class FilteringIterator<T> extends PrefetchingIterator<T>
| Constructor and Description |
|---|
FilteringIterator(Iterator<T> source,
Predicate<T> predicate)
Deprecated.
use
FilteringIterator( Iterator, Predicate ) instead |
FilteringIterator(Iterator<T> source,
org.neo4j.function.Predicate<T> predicate) |
| Modifier and Type | Method and Description |
|---|---|
static <T> Iterator<T> |
noDuplicates(Iterator<T> source) |
static <T> Iterator<T> |
notNull(Iterator<T> source) |
hasNext, next, peek, removeequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemaining@Deprecated public FilteringIterator(Iterator<T> source, Predicate<T> predicate)
FilteringIterator( Iterator, Predicate ) insteadsource - the iterator to fetch items frompredicate - the filter to useCopyright © 2002–2015 The Neo4j Graph Database Project. All rights reserved.