Class UnmodifiableIterator<E,T extends Iterator<? extends E>>
java.lang.Object
org.apache.commons.collections4.iterators.UnmodifiableIterator<E,T>
- Type Parameters:
E- The type of elements returned by this iterator.T- The wrapped Iterator type.
- All Implemented Interfaces:
Iterator<E>,Unmodifiable
public final class UnmodifiableIterator<E,T extends Iterator<? extends E>>
extends Object
implements Iterator<E>, Unmodifiable
Decorates an iterator such that it cannot be modified.
Calling remove() throws UnsupportedOperationException.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanhasNext()next()voidremove()Always throwsUnsupportedOperationException.static <E> Iterator<E> unmodifiableIterator(Iterator<? extends E> iterator) Decorates the specified iterator such that it cannot be modified.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Method Details
-
unmodifiableIterator
Decorates the specified iterator such that it cannot be modified.If the iterator is already unmodifiable it is returned directly.
- Type Parameters:
E- the element type- Parameters:
iterator- The iterator to decorate- Returns:
- A new unmodifiable iterator
- Throws:
NullPointerException- if the iterator is null
-
hasNext
-
next
-
remove
Always throwsUnsupportedOperationException.- Specified by:
removein interfaceIterator<E>- Throws:
UnsupportedOperationException- Always thrown.
-