com.google.common.collect
Class UnmodifiableIterator<E>

java.lang.Object
  extended by com.google.common.collect.UnmodifiableIterator<E>
All Implemented Interfaces:
java.util.Iterator<E>
Direct Known Subclasses:
AbstractIterator, AbstractSequentialIterator, UnmodifiableListIterator

@GwtCompatible
public abstract class UnmodifiableIterator<E>
extends java.lang.Object
implements java.util.Iterator<E>

An iterator that does not support remove().

Since:
2.0 (imported from Google Collections Library)

Constructor Summary
protected UnmodifiableIterator()
          Constructor for use by subclasses.
 
Method Summary
 void remove()
          Deprecated. Unsupported operation.
 
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
hasNext, next
 

Constructor Detail

UnmodifiableIterator

protected UnmodifiableIterator()
Constructor for use by subclasses.

Method Detail

remove

@Deprecated
public final void remove()
Deprecated. Unsupported operation.

Guaranteed to throw an exception and leave the underlying data unmodified.

Specified by:
remove in interface java.util.Iterator<E>
Throws:
java.lang.UnsupportedOperationException - always