public abstract class PrefetchingRawIterator<T,EXCEPTION extends Exception> extends Object implements RawIterator<T,EXCEPTION>
EMPTY| Constructor and Description |
|---|
PrefetchingRawIterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext() |
T |
next()
Uses
hasNext() to try to fetch the next item and returns it
if found, otherwise it throws a NoSuchElementException. |
T |
peek() |
void |
remove() |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitempty, from, ofpublic T next() throws EXCEPTION extends Exception
hasNext() to try to fetch the next item and returns it
if found, otherwise it throws a NoSuchElementException.next in interface RawIterator<T,EXCEPTION extends Exception>NoSuchElementException if there's no more items to return.EXCEPTION extends Exceptionpublic void remove()
remove in interface RawIterator<T,EXCEPTION extends Exception>Copyright © 2002–2016 The Neo4j Graph Database Project. All rights reserved.