Method Summary |
|
public void | add(Object o) Adds a specified element to the list at this iterator's
current position. |
public boolean | hasNext() Indicates whether more values can be returned by this
iterator. |
public boolean | hasPrevious() Indicates whether more values can be returned by this
iterator by calling previous(). |
public Object | next() Returns the next value of this iterator. |
public int | nextIndex() Returns the index of the element that would be returned by
a call to next(). |
public Object | previous() Returns the previous value of this iterator. |
public int | previousIndex() Returns the index of the element that would be returned by
a call to previous(). |
public void | remove() Removes the last value returned from the underlying
collection. |
public void | set(Object o) Sets the last element returned to a specified value. |