public interface Cursor<T> extends RawCursor<T,RuntimeException>
Each position a cursor points to is referred to as a "row".
Access to the current row is done by subtyping this interface and adding accessor methods. If no call to
next() has been done, or if it returned false, then such accessor methods throw IllegalStateException.
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Signal that the cursor is no longer needed.
|
boolean |
next()
Move the cursor to the next row.
|
boolean next()
RawCursornext in interface RawCursor<T,RuntimeException>void close()
RawCursorclose in interface AutoCloseableclose in interface RawCursor<T,RuntimeException>Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.