Uses of Interface
java.util.ListIterator
| Package | Description |
|---|---|
| java.util | |
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
-
Uses of ListIterator in java.util
Methods in java.util that return ListIterator Modifier and Type Method Description static <T> ListIterator<T>Collections. emptyListIterator()Returns a list iterator containing no elements.ListIterator<E>AbstractList. listIterator()Returns a ListIterator on the elements of this list.ListIterator<E>AbstractList. listIterator(int location)Returns a list iterator on the elements of this list.abstract ListIterator<E>AbstractSequentialList. listIterator(int location)ListIterator<E>LinkedList. listIterator(int location)Returns a ListIterator on the elements of thisLinkedList.ListIterator<E>List. listIterator()Returns aListiterator on the elements of thisList.ListIterator<E>List. listIterator(int location)Returns a list iterator on the elements of thisList. -
Uses of ListIterator in java.util.concurrent
Methods in java.util.concurrent that return ListIterator Modifier and Type Method Description ListIterator<E>CopyOnWriteArrayList. listIterator()Equivalent tolistIterator(0).ListIterator<E>CopyOnWriteArrayList. listIterator(int index)Returns aListIteratorthat iterates over the elements of this list as they were at the time of this method call.