Uses of Interface
java.util.ListIterator
Packages that useListIterator
Package
Description
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Utility classes commonly useful in concurrent programming.
Uses ofListIterator injava.util
Methods injava.util that returnListIteratorModifier and TypeMethodDescriptionstatic <T> ListIterator
<T> Collections.emptyListIterator()
Returns a list iterator that has no elements.AbstractList.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).AbstractList.listIterator
(int index) Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.abstractListIterator
<E> AbstractSequentialList.listIterator
(int index) Returns a list iterator over the elements in this list (in proper sequence).ArrayList.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).ArrayList.listIterator
(int index) Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.LinkedList.listIterator
(int index) Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in the list.List.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).List.listIterator
(int index) Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.Vector.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).Vector.listIterator
(int index) Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.Uses ofListIterator injava.util.concurrent
Methods injava.util.concurrent that returnListIteratorModifier and TypeMethodDescriptionCopyOnWriteArrayList.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).CopyOnWriteArrayList.listIterator
(int index) Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.