Package one.microstream.util.iterables
Class ReadOnlyListIterator<E>
java.lang.Object
one.microstream.util.iterables.ReadOnlyListIterator<E>
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
public class ReadOnlyListIterator<E> extends Object implements ListIterator<E>
Generic (and potentially imperformant!) implementation of a
Routes all modifying procedures (
ListIterator
.Routes all modifying procedures (
add(Object)
, remove()
, set(Object)
) to the wrapped List
which may throw an UnsupportedOperationException
if it does not support the procedure.
If the use of an Iterator is not mandatory (e.g. through an API), it is strongly recommended to instead use
higher order programming concepts from "Collection 2.0" types like XGettingList
, XList
, etc.
and their functional procedures etc.
Note that while implementing ListIterator
, this iterator can handle any sequence as it is read only,
meaning it can be used for iterating e.g. XGettingEnum
collections as well.
-
Constructor Summary
Constructors Constructor Description ReadOnlyListIterator(XGettingSequence<E> list)
ReadOnlyListIterator(XGettingSequence<E> list, int index)
-
Method Summary
-
Constructor Details
-
Method Details
-
add
- Specified by:
add
in interfaceListIterator<E>
- Throws:
UnsupportedOperationException
-
hasNext
public boolean hasNext() -
hasPrevious
public boolean hasPrevious()- Specified by:
hasPrevious
in interfaceListIterator<E>
-
next
- Specified by:
next
in interfaceIterator<E>
- Specified by:
next
in interfaceListIterator<E>
- Throws:
NoSuchElementException
-
nextIndex
public int nextIndex()- Specified by:
nextIndex
in interfaceListIterator<E>
-
previous
- Specified by:
previous
in interfaceListIterator<E>
- Throws:
NoSuchElementException
-
previousIndex
public int previousIndex()- Specified by:
previousIndex
in interfaceListIterator<E>
-
remove
- Specified by:
remove
in interfaceIterator<E>
- Specified by:
remove
in interfaceListIterator<E>
- Throws:
NoSuchElementException
UnsupportedOperationException
-
set
- Specified by:
set
in interfaceListIterator<E>
- Throws:
NoSuchElementException
UnsupportedOperationException
-