|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.directory.shared.ldap.model.cursor.AbstractCursor<E>
org.apache.directory.shared.ldap.model.cursor.SingletonCursor<E>
E - The type of element on which this cursor will iteratepublic class SingletonCursor<E>
A Cursor over a single element.
| Constructor Summary | |
|---|---|
SingletonCursor(E singleton)
Creates a new instance of SingletonCursor. |
|
SingletonCursor(E singleton,
Comparator<E> comparator)
Creates a new instance of SingletonCursor, with its associated comparator |
|
| Method Summary | |
|---|---|
void |
after(E element)
Prepares this Cursor, so a subsequent call to Cursor#previous() with a true return value, will have positioned the Cursor on a dataSet element equal to or less than the element argument but not greater. |
void |
afterLast()
Positions this Cursor after the last element. |
boolean |
available()
Determines whether or not a call to get() will succeed. |
void |
before(E element)
Prepares this Cursor, so a subsequent call to Cursor#next() with a true return value, will have positioned the Cursor on a dataSet element equal to or less than the element argument but not greater. |
void |
beforeFirst()
Positions this Cursor before the first element. |
boolean |
first()
Positions this Cursor at the first element. |
E |
get()
Gets the object at the current position. |
boolean |
isAfterLast()
Is this Cursor positioned after the last element. |
boolean |
isBeforeFirst()
Is this Cursor positioned before the first element. |
boolean |
isFirst()
Is this Cursor positioned at the first element. |
boolean |
isLast()
Is this Cursor positioned at the last element. |
boolean |
last()
Positions this Cursor at the last element. |
boolean |
next()
Advances this Cursor to the next position. |
boolean |
previous()
Advances this Cursor to the previous position. |
| Methods inherited from class org.apache.directory.shared.ldap.model.cursor.AbstractCursor |
|---|
checkNotClosed, close, close, isClosed, iterator, setClosureMonitor |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SingletonCursor(E singleton)
singleton - The unique element to store into this cursor
public SingletonCursor(E singleton,
Comparator<E> comparator)
singleton - The unique element to store into this cursorcomparator - The associated comparator| Method Detail |
|---|
public boolean available()
public void before(E element)
throws Exception
element - the element to be positioned before
Exception - with problems accessing the underlying btree
public void after(E element)
throws Exception
element - the element to be positioned after
Exception - if there are problems positioning this cursor or if
this Cursor is closed
public void beforeFirst()
throws Exception
Exception - if there are problems positioning this cursor or if
this Cursor is closed
public void afterLast()
throws Exception
Exception - if there are problems positioning this Cursor or if
this Cursor is closed
public boolean first()
throws Exception
Exception - if there are problems positioning this Cursor or if
this Cursor is closed
public boolean last()
throws Exception
Exception - if there are problems positioning this Cursor or if
this Cursor is closed
public boolean isFirst()
throws Exception
isFirst in interface Cursor<E>isFirst in class AbstractCursor<E>Exception - if there are problems querying the position of this Cursor
or if this Cursor is closed
public boolean isLast()
throws Exception
isLast in interface Cursor<E>isLast in class AbstractCursor<E>Exception - if there are problems querying the position of this Cursor
or if this Cursor is closed
public boolean isAfterLast()
throws Exception
isAfterLast in interface Cursor<E>isAfterLast in class AbstractCursor<E>Exception - if there are problems querying the position of this Cursor
or if this Cursor is closed
public boolean isBeforeFirst()
throws Exception
isBeforeFirst in interface Cursor<E>isBeforeFirst in class AbstractCursor<E>Exception - if there are problems querying the position of this Cursor
or if this Cursor is closed
public boolean previous()
throws Exception
Exception - if there are problems advancing to the next position
public boolean next()
throws Exception
Exception - if there are problems advancing to this Cursor to
the next position, or if this Cursor is closed
public E get()
throws Exception
Exception - if the object at this Cursor's current position
cannot be retrieved, or if this Cursor is closed
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||