|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use UnmodifiableIterator | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. |
| Uses of UnmodifiableIterator in com.google.common.collect |
|---|
| Methods in com.google.common.collect that return UnmodifiableIterator | ||
|---|---|---|
static
|
Iterators.emptyIterator()
Returns the empty Iterator. |
|
static
|
Iterators.forArray(T... array)
Returns an iterator containing the elements of array in order. |
|
static
|
Iterators.forArray(T[] array,
int offset,
int length)
Returns an iterator containing the elements in the specified range of array in order. |
|
abstract UnmodifiableIterator<E> |
ImmutableList.iterator()
|
|
abstract UnmodifiableIterator<E> |
ImmutableSet.iterator()
|
|
UnmodifiableIterator<E> |
ImmutableMultiset.iterator()
|
|
abstract UnmodifiableIterator<E> |
ImmutableCollection.iterator()
Returns an unmodifiable iterator across the elements in this collection. |
|
static
|
Iterators.paddedPartition(java.util.Iterator<T> iterator,
int size)
Divides an iterator into unmodifiable sublists of the given size, padding the final iterator with null values if necessary. |
|
static
|
Iterators.partition(java.util.Iterator<T> iterator,
int size)
Divides an iterator into unmodifiable sublists of the given size (the final list may be smaller). |
|
static
|
Iterators.singletonIterator(T value)
Returns an iterator containing only value. |
|
static
|
Iterators.unmodifiableIterator(java.util.Iterator<T> iterator)
Returns an unmodifiable view of iterator. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||