ListIterator
Object Hierarchy:
Description:
public interface ListIterator<
G> :
Iterator<
G>
A list iterator. This supports bi-directional and index-based iteration.
All known sub-interfaces:
Content:
Methods:
- public abstract void @set (G item)
Sets the current item in the iteration to the specified new item.
- public abstract void add (G item)
Adds the specified item after the current item in the iteration. The
iterator is moved to the point of the new added item.
- public abstract int index ()
Returns the current index in the iteration.
Inherited Members:
All known members inherited from interface Gee.Iterator