com.google.common.collect
Class UnmodifiableIterator<E>
java.lang.Object
com.google.common.collect.UnmodifiableIterator<E>
- All Implemented Interfaces:
- Iterator<E>
- Direct Known Subclasses:
- AbstractIterator
public abstract class UnmodifiableIterator<E>
- extends Object
- implements Iterator<E>
An iterator that does not support remove()
.
- Since:
- 2010.01.04 stable (imported from Google Collections Library)
- Author:
- Jared Levy
Method Summary |
void |
remove()
Guaranteed to throw an exception and leave the underlying data unmodified. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
UnmodifiableIterator
public UnmodifiableIterator()
remove
public final void remove()
- Guaranteed to throw an exception and leave the underlying data unmodified.
- Specified by:
remove
in interface Iterator<E>
- Throws:
UnsupportedOperationException
- always