Uses of Class
org.glassfish.jersey.internal.guava.UnmodifiableIterator
-
Packages that use UnmodifiableIterator Package Description org.glassfish.jersey.internal.guava -
-
Uses of UnmodifiableIterator in org.glassfish.jersey.internal.guava
Subclasses of UnmodifiableIterator in org.glassfish.jersey.internal.guava Modifier and Type Class Description classAbstractIterator<T>This class provides a skeletal implementation of theIteratorinterface, to make this interface easier to implement for certain types of data sources.classUnmodifiableListIterator<E>A list iterator that does not supportremove(),UnmodifiableListIterator.add(E), orUnmodifiableListIterator.set(E).Methods in org.glassfish.jersey.internal.guava that return UnmodifiableIterator Modifier and Type Method Description static <T> UnmodifiableIterator<T>Iterators. emptyIterator()Deprecated.UseImmutableSet.<T>of().iterator()instead; or for Java 7 or later,Collections.emptyIterator().static <T> UnmodifiableIterator<T>Iterators. forArray(T... array)Returns an iterator containing the elements ofarrayin order.static <T> UnmodifiableIterator<T>Iterators. singletonIterator(T value)Returns an iterator containing onlyvalue.static <T> UnmodifiableIterator<T>Iterators. unmodifiableIterator(Iterator<T> iterator)Returns an unmodifiable view ofiterator.
-