static <K> ObjectListIterator<K> |
ObjectIterators.asObjectIterator(ListIterator<K> i) |
Wraps a standard list iterator into a type-specific list iterator.
|
ObjectListIterator<K> |
AbstractObjectList.iterator() |
|
ObjectListIterator<K> |
ObjectList.iterator() |
Returns a type-specific iterator on the elements of this list (in proper sequence).
|
ObjectListIterator<K> |
AbstractObjectList.listIterator() |
|
ObjectListIterator<K> |
AbstractObjectList.listIterator(int index) |
|
ObjectListIterator<K> |
AbstractObjectList.ObjectSubList.listIterator(int index) |
|
ObjectListIterator<K> |
ObjectArrayList.listIterator(int index) |
|
ObjectListIterator<K> |
ObjectList.listIterator() |
Returns a type-specific list iterator on the list.
|
ObjectListIterator<K> |
ObjectList.listIterator(int index) |
Returns a type-specific list iterator on the list starting at a given index.
|
ObjectListIterator<K> |
AbstractObjectList.objectListIterator() |
Deprecated.
|
ObjectListIterator<K> |
AbstractObjectList.objectListIterator(int index) |
Deprecated.
|
ObjectListIterator<K> |
ObjectList.objectListIterator() |
Deprecated.
|
ObjectListIterator<K> |
ObjectList.objectListIterator(int index) |
Deprecated.
|
static <K> ObjectListIterator<K> |
ObjectIterators.singleton(K element) |
Returns an iterator that iterates just over the given element.
|
static <K> ObjectListIterator<K> |
ObjectIterators.unmodifiable(ObjectListIterator<K> i) |
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static <K> ObjectListIterator<K> |
ObjectIterators.wrap(K[] array) |
Wraps the given array into a type-specific list iterator.
|
static <K> ObjectListIterator<K> |
ObjectIterators.wrap(K[] array,
int offset,
int length) |
Wraps the given part of an array into a type-specific list iterator.
|