Class UnmodifiableListIterator
java.lang.Object
org.apache.commons.collections.iterators.UnmodifiableListIterator
- All Implemented Interfaces:
Iterator,ListIterator,Unmodifiable
Decorates a list iterator such that it cannot be modified.
- Since:
- Commons Collections 3.0
- Version:
- $Revision: 646777 $ $Date: 2008-04-10 14:33:15 +0200 (Thu, 10 Apr 2008) $
- Author:
- Stephen Colebourne
-
Method Summary
Modifier and TypeMethodDescriptionvoidstatic ListIteratordecorate(ListIterator iterator) Decorates the specified iterator such that it cannot be modified.booleanhasNext()booleannext()intprevious()intvoidremove()voidMethods 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
-
decorate
Decorates the specified iterator such that it cannot be modified.- Parameters:
iterator- the iterator to decorate- Throws:
IllegalArgumentException- if the iterator is null
-
hasNext
public boolean hasNext()- Specified by:
hasNextin interfaceIterator- Specified by:
hasNextin interfaceListIterator
-
next
- Specified by:
nextin interfaceIterator- Specified by:
nextin interfaceListIterator
-
nextIndex
public int nextIndex()- Specified by:
nextIndexin interfaceListIterator
-
hasPrevious
public boolean hasPrevious()- Specified by:
hasPreviousin interfaceListIterator
-
previous
- Specified by:
previousin interfaceListIterator
-
previousIndex
public int previousIndex()- Specified by:
previousIndexin interfaceListIterator
-
remove
public void remove()- Specified by:
removein interfaceIterator- Specified by:
removein interfaceListIterator
-
set
- Specified by:
setin interfaceListIterator
-
add
- Specified by:
addin interfaceListIterator
-