|
Method Summary
|
|
void
|
add(Object o)
Inserts the specified element into the List.
|
|
boolean
|
hasNext()
Returns true if this ListIterator has more elements when traversing
the List in the forward direction.
|
|
boolean
|
hasPrevious()
Returns true if this ListIterator has more elements when traversing
the list in the reverse direction.
|
|
Object
|
next()
Returns the next element in the List.
|
|
int
|
nextIndex()
Returns the index of the element that would be returned by a subsequent
call to next.
|
|
Object
|
previous()
Returns the previous element in the List.
|
|
int
|
previousIndex()
Returns the index of the element that would be returned by a subsequent
call to previous.
|
|
void
|
remove()
Removes from the List the last element that was returned by next
or previous.
|
|
void
|
set(Object o)
Replaces the last element returned by next or previous with the
specified element.
|