Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the 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.
index | index of the first element to be returned from the
list iterator (by a call to next ) |
IndexOutOfBoundsException | if the index is out of range
( index < 0 || index > size() ) |
Diagram: Collection List