public interface Cursor<T> extends org.neo4j.function.Supplier<T>, AutoCloseable
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.
boolean next()
void close()
close in interface AutoCloseableCopyright © 2002–2015 The Neo4j Graph Database Project. All rights reserved.