|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.directory.api.ldap.model.cursor.AbstractCursor<E>
E - The type of element on which this cursor will iteratepublic abstract class AbstractCursor<E>
Simple class that contains often used Cursor code.
| Constructor Summary | |
|---|---|
AbstractCursor()
|
|
| Method Summary | |
|---|---|
void |
checkNotClosed(String operation)
Check that the cursor is not closed before executing an operation. |
void |
close()
Closes this Cursor and frees any resources it my have allocated. |
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.directory.api.ldap.model.cursor.Cursor |
|---|
after, afterLast, available, before, beforeFirst, first, get, last, next, previous |
| Constructor Detail |
|---|
public AbstractCursor()
| Method Detail |
|---|
public void setClosureMonitor(ClosureMonitor monitor)
setClosureMonitor in interface Cursor<E>monitor - the monitor to use for detecting Cursor close events
public final void checkNotClosed(String operation)
throws CursorClosedException
operation - The operation we try to execute
CursorClosedException - If there is a problem during the checkpublic boolean isClosed()
isClosed in interface Cursor<E>public void close(Exception cause)
close in interface Cursor<E>cause - exception thrown when this Cursor is accessed after closepublic void close()
close in interface Cursor<E>public Iterator<E> iterator()
iterator in interface Iterable<E>public boolean isAfterLast()
isAfterLast in interface Cursor<E>public boolean isBeforeFirst()
isBeforeFirst in interface Cursor<E>public boolean isFirst()
isFirst in interface Cursor<E>public boolean isLast()
isLast in interface Cursor<E>public String toString(String tabs)
toString in interface Cursor<E>tabs - The spaces to add at each level
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||