Uses of Class
org.glassfish.jersey.internal.guava.UnmodifiableIterator
Packages that use UnmodifiableIterator
- 
Uses of UnmodifiableIterator in org.glassfish.jersey.internal.guava
Subclasses of UnmodifiableIterator in org.glassfish.jersey.internal.guavaModifier and TypeClassDescriptionclassThis class provides a skeletal implementation of theIteratorinterface, to make this interface easier to implement for certain types of data sources.classA list iterator that does not supportremove(),UnmodifiableListIterator.add(E), orUnmodifiableListIterator.set(E).Methods in org.glassfish.jersey.internal.guava that return UnmodifiableIteratorModifier and TypeMethodDescriptionstatic <T> UnmodifiableIterator<T>Iterators.emptyIterator()Deprecated.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. 
ImmutableSet.<T>of().iterator()instead; or for Java 7 or later,Collections.emptyIterator().