E
- The type of element on which this cursor will iteratepublic abstract class AbstractCursor<E> extends Object implements Cursor<E>
Constructor and Description |
---|
AbstractCursor() |
Modifier and Type | Method and Description |
---|---|
void |
checkNotClosed()
Check that the cursor is not closed before executing an operation.
|
void |
close() |
void |
close(Exception cause)
Closes this Cursor and frees any resources it my have allocated.
|
boolean |
isAfterLast()
Is this Cursor positioned after the last element.
|
boolean |
isBeforeFirst()
Is this Cursor positioned before the first element.
|
boolean |
isClosed()
Checks if this Cursor is closed.
|
boolean |
isFirst()
Is this Cursor positioned at the first element.
|
boolean |
isLast()
Is this Cursor positioned at the last element.
|
Iterator<E> |
iterator() |
void |
setClosureMonitor(ClosureMonitor monitor)
Sets a non-null closure monitor to associate with this Cursor.
|
String |
toString(String tabs)
Pretty-print a cursor and its wrapped cursor.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
after, afterLast, available, before, beforeFirst, first, get, last, next, previous
forEach, spliterator
public AbstractCursor()
public void setClosureMonitor(ClosureMonitor monitor)
setClosureMonitor
in interface Cursor<E>
monitor
- the monitor to use for detecting Cursor close eventspublic final void checkNotClosed() throws CursorClosedException
CursorClosedException
- If there is a problem during the checkpublic boolean isClosed()
public void close(Exception cause) throws IOException
close
in interface Cursor<E>
cause
- exception thrown when this Cursor is accessed after closeIOException
- If we can't close the Cursorpublic void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
IOException
public boolean isAfterLast()
isAfterLast
in interface Cursor<E>
public boolean isBeforeFirst()
isBeforeFirst
in interface Cursor<E>
public boolean isFirst()
public boolean isLast()
Copyright © 2003–2023 The Apache Software Foundation. All rights reserved.