Class UnmodifiableListIterator<E>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.UnmodifiableListIterator<E>
-
- 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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(E obj)booleanhasNext()booleanhasPrevious()Enext()intnextIndex()Eprevious()intpreviousIndex()voidremove()voidset(E obj)static <E> ListIterator<E>umodifiableListIterator(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, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
umodifiableListIterator
public static <E> ListIterator<E> umodifiableListIterator(ListIterator<? extends E> iterator)
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
-
hasNext
public boolean hasNext()
-
next
public E next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<E>
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator<E>
-
previous
public E previous()
- Specified by:
previousin interfaceListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<E>
-
remove
public void remove()
-
set
public void set(E obj)
- Specified by:
setin interfaceListIterator<E>
-
add
public void add(E obj)
- Specified by:
addin interfaceListIterator<E>
-
-