Package java.util
Interface List
abstract ListIterator listIterator()
abstract ListIterator listIterator(int index)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
listIterator() method:
Returns a list iterator of the elements in this list in a proper sequence.
listIterator(int index) method:
Returns a list itertor of the elements in this list in a proper sequence, starting at the specified position in this list. The specified index indicates the fisrt element that would be returned by an initial call to the next method. An initial call to the previous method would return the element with the specified index minus one.