Class UnmodifiableListIterator<E>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.UnmodifiableListIterator<E>
-
- All Implemented Interfaces:
java.util.Iterator<E>
,java.util.ListIterator<E>
,Unmodifiable
public final class UnmodifiableListIterator<E> extends java.lang.Object implements java.util.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 void
add(E obj)
boolean
hasNext()
boolean
hasPrevious()
E
next()
int
nextIndex()
E
previous()
int
previousIndex()
void
remove()
void
set(E obj)
static <E> java.util.ListIterator<E>
umodifiableListIterator(java.util.ListIterator<? extends E> iterator)
Decorates the specified iterator such that it cannot be modified.
-
-
-
Method Detail
-
umodifiableListIterator
public static <E> java.util.ListIterator<E> umodifiableListIterator(java.util.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:
java.lang.NullPointerException
- if the iterator is null
-
hasNext
public boolean hasNext()
-
next
public E next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<E>
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<E>
-
remove
public void remove()
-
-