Class UnmodifiableListIterator<E>
java.lang.Object
org.apache.commons.collections4.iterators.UnmodifiableListIterator<E>
- Type Parameters:
E- The type of elements returned by this iterator.
- All Implemented Interfaces:
Iterator<E>,ListIterator<E>,Unmodifiable
public final class UnmodifiableListIterator<E>
extends Object
implements ListIterator<E>, Unmodifiable
Decorates a list iterator such that it cannot be modified.
Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionvoidAlways throwsUnsupportedOperationException.booleanhasNext()booleannext()intprevious()intvoidremove()Always throwsUnsupportedOperationException.voidAlways throwsUnsupportedOperationException.static <E> ListIterator<E> umodifiableListIterator(ListIterator<? extends E> iterator) Deprecated.method name has typo in it.static <E> ListIterator<E> unmodifiableListIterator(ListIterator<? 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
-
umodifiableListIterator
@Deprecated public static <E> ListIterator<E> umodifiableListIterator(ListIterator<? extends E> iterator) Deprecated.method name has typo in it. UseunmodifiableListIterator(ListIterator)instead.Decorates the specified iterator such that it cannot be modified.- Type Parameters:
E- the element type- Parameters:
iterator- The iterator to decorate- Returns:
- A new unmodifiable list iterator
- Throws:
NullPointerException- if the iterator is null
-
unmodifiableListIterator
Decorates the specified iterator such that it cannot be modified.- Type Parameters:
E- the element type- Parameters:
iterator- The iterator to decorate- Returns:
- A new unmodifiable list iterator
- Throws:
NullPointerException- if the iterator is null
-
add
Always throwsUnsupportedOperationException.- Specified by:
addin interfaceListIterator<E>- Parameters:
obj- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
hasNext
-
hasPrevious
- Specified by:
hasPreviousin interfaceListIterator<E>
-
next
-
nextIndex
- Specified by:
nextIndexin interfaceListIterator<E>
-
previous
- Specified by:
previousin interfaceListIterator<E>
-
previousIndex
- Specified by:
previousIndexin interfaceListIterator<E>
-
remove
Always throwsUnsupportedOperationException.- Specified by:
removein interfaceIterator<E>- Specified by:
removein interfaceListIterator<E>- Throws:
UnsupportedOperationException- Always thrown.
-
set
Always throwsUnsupportedOperationException.- Specified by:
setin interfaceListIterator<E>- Parameters:
ignored- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-