Package com.google.common.collect
Class UnmodifiableListIterator<E>
- java.lang.Object
-
- com.google.common.collect.UnmodifiableIterator<E>
-
- com.google.common.collect.UnmodifiableListIterator<E>
-
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
@GwtCompatible public abstract class UnmodifiableListIterator<E> extends UnmodifiableIterator<E> implements ListIterator<E>
- Since:
- 7.0
- Author:
- Louis Wasserman
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
UnmodifiableListIterator()
Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
add(E e)
Deprecated.Unsupported operation.void
set(E e)
Deprecated.Unsupported operation.-
Methods inherited from class com.google.common.collect.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
-
-
-
-
Constructor Detail
-
UnmodifiableListIterator
protected UnmodifiableListIterator()
Constructor for use by subclasses.
-
-
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:
add
in interfaceListIterator<E>
- Parameters:
e
- the element to insert- 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:
set
in interfaceListIterator<E>
- Parameters:
e
- the element with which to replace the last element returned bynext
orprevious
- Throws:
UnsupportedOperationException
- always
-
-