| Package | Description |
|---|---|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> ListIterator |
Collections.emptyListIterator()
Returns a list iterator that has no elements.
|
ListIterator |
AbstractList.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).
|
ListIterator |
Vector.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).
|
ListIterator |
List.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).
|
ListIterator |
ArrayList.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).
|
ListIterator |
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.
|
ListIterator |
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.
|
abstract ListIterator |
AbstractSequentialList.listIterator(int index)
Returns a list iterator over the elements in this list (in proper sequence).
|
ListIterator |
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.
|
ListIterator |
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.
|
ListIterator |
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.
|
| Modifier and Type | Method and Description |
|---|---|
ListIterator |
CopyOnWriteArrayList.listIterator()
Returns a list iterator over the elements in this list (in proper sequence).
|
ListIterator |
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.
|