Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and
other utilities for working with collections.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractIndexedListIterator<E>
This class provides a skeletal implementation of the
ListIterator
interface across a fixed number of elements that may be retrieved by
position. |
Modifier and Type | Field and Description |
---|---|
(package private) static UnmodifiableListIterator<java.lang.Object> |
Iterators.EMPTY_LIST_ITERATOR |
Modifier and Type | Method and Description |
---|---|
(package private) static <T> UnmodifiableListIterator<T> |
Iterators.emptyListIterator()
Returns the empty iterator.
|
(package private) static <T> UnmodifiableListIterator<T> |
Iterators.forArray(T[] array,
int offset,
int length,
int index)
Returns a list iterator containing the elements in the specified range of
array in order, starting at the specified index. |
UnmodifiableListIterator<E> |
ImmutableList.listIterator() |
UnmodifiableListIterator<E> |
RegularImmutableAsList.listIterator(int index) |
UnmodifiableListIterator<E> |
RegularImmutableList.listIterator(int index) |
UnmodifiableListIterator<E> |
ImmutableList.listIterator(int index) |