Class UnmodifiableListIterator<E>
- java.lang.Object
-
- org.glassfish.jersey.internal.guava.UnmodifiableIterator<E>
-
- org.glassfish.jersey.internal.guava.UnmodifiableListIterator<E>
-
- All Implemented Interfaces:
Iterator<E>,ListIterator<E>
public abstract class UnmodifiableListIterator<E> extends UnmodifiableIterator<E> implements ListIterator<E>
- Since:
- 7.0
- Author:
- Louis Wasserman
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(E e)Deprecated.Unsupported operation.voidset(E e)Deprecated.Unsupported operation.-
Methods inherited from class org.glassfish.jersey.internal.guava.UnmodifiableIterator
remove
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Methods inherited from interface java.util.ListIterator
hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove
-
-
-
-
Method Detail
-
add
@Deprecated public final void add(E e)
Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the underlying data unmodified.- Specified by:
addin interfaceListIterator<E>- Throws:
UnsupportedOperationException- always
-
set
@Deprecated public final void set(E e)
Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the underlying data unmodified.- Specified by:
setin interfaceListIterator<E>- Throws:
UnsupportedOperationException- always
-
-