Package | Description |
---|---|
com.google.inject.internal.util |
Modifier and Type | Method and Description |
---|---|
static <T> UnmodifiableIterator<T> |
Iterators.emptyIterator()
Returns the empty
Iterator . |
static <T> UnmodifiableIterator<T> |
Iterators.forArray(T... array)
Returns an iterator containing the elements of
array in order. |
static <T> UnmodifiableIterator<T> |
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> |
ImmutableCollection.iterator()
Returns an unmodifiable iterator across the elements in this collection.
|
abstract UnmodifiableIterator<E> |
ImmutableSet.iterator() |
static <T> UnmodifiableIterator<T> |
Iterators.singletonIterator(T value)
Returns an iterator containing only
value . |
static <T> UnmodifiableIterator<T> |
Iterators.unmodifiableIterator(Iterator<T> iterator)
Returns an unmodifiable view of
iterator . |
Copyright © 2006-2012 Google, Inc.. All Rights Reserved.