Returns a list iterator over the elements in this list (in proper sequence).
Overload List
Overload | Description |
listIterator() | Returns a list iterator over the elements in this list (in proper sequence). |
listIterator(int) | Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in this list. The specified index indicates the first element that would be returned by an initial call to next. An initial call to previous would return the element with the specified index minus one. |
See Also