void |
Cursor.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 |
EmptyCursor.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 |
ListCursor.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 |
SetCursor.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 |
SingletonCursor.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 |
Cursor.afterLast() |
Positions this Cursor after the last element.
|
void |
EmptyCursor.afterLast() |
Positions this Cursor after the last element.
|
void |
ListCursor.afterLast() |
Positions this Cursor after the last element.
|
void |
SetCursor.afterLast() |
Positions this Cursor after the last element.
|
void |
SingletonCursor.afterLast() |
Positions this Cursor after the last element.
|
void |
Cursor.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 |
EmptyCursor.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 |
ListCursor.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 |
SetCursor.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 |
SingletonCursor.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 |
Cursor.beforeFirst() |
Positions this Cursor before the first element.
|
void |
EmptyCursor.beforeFirst() |
Positions this Cursor before the first element.
|
void |
ListCursor.beforeFirst() |
Positions this Cursor before the first element.
|
void |
SetCursor.beforeFirst() |
Positions this Cursor before the first element.
|
void |
SingletonCursor.beforeFirst() |
Positions this Cursor before the first element.
|
boolean |
Cursor.first() |
Positions this Cursor at the first element.
|
boolean |
EmptyCursor.first() |
Positions this Cursor at the first element.
|
boolean |
ListCursor.first() |
Positions this Cursor at the first element.
|
boolean |
SetCursor.first() |
Positions this Cursor at the first element.
|
boolean |
SingletonCursor.first() |
Positions this Cursor at the first element.
|
E |
Cursor.get() |
Gets the object at the current position.
|
E |
EmptyCursor.get() |
Gets the object at the current position.
|
E |
ListCursor.get() |
Gets the object at the current position.
|
E |
SetCursor.get() |
Gets the object at the current position.
|
E |
SingletonCursor.get() |
Gets the object at the current position.
|
boolean |
Cursor.last() |
Positions this Cursor at the last element.
|
boolean |
EmptyCursor.last() |
Positions this Cursor at the last element.
|
boolean |
ListCursor.last() |
Positions this Cursor at the last element.
|
boolean |
SetCursor.last() |
Positions this Cursor at the last element.
|
boolean |
SingletonCursor.last() |
Positions this Cursor at the last element.
|
boolean |
Cursor.next() |
Advances this Cursor to the next position.
|
boolean |
EmptyCursor.next() |
Advances this Cursor to the next position.
|
boolean |
ListCursor.next() |
Advances this Cursor to the next position.
|
boolean |
SetCursor.next() |
Advances this Cursor to the next position.
|
boolean |
SingletonCursor.next() |
Advances this Cursor to the next position.
|
boolean |
Cursor.previous() |
Advances this Cursor to the previous position.
|
boolean |
EmptyCursor.previous() |
Advances this Cursor to the previous position.
|
boolean |
ListCursor.previous() |
Advances this Cursor to the previous position.
|
boolean |
SetCursor.previous() |
Advances this Cursor to the previous position.
|
boolean |
SingletonCursor.previous() |
Advances this Cursor to the previous position.
|