Package one.microstream.util.iterables
Class GenericListIterator<E>
- java.lang.Object
-
- one.microstream.util.iterables.GenericListIterator<E>
-
- All Implemented Interfaces:
Iterator<E>,ListIterator<E>
public class GenericListIterator<E> extends Object implements ListIterator<E>
Generic (and potentially imperformant!) implementation of aListIterator.
Routes all modifying procedures (add(Object),remove(),set(Object)) to the wrappedListwhich may throw anUnsupportedOperationExceptionif 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.
-
-
Constructor Summary
Constructors Constructor Description GenericListIterator(XList<E> list)GenericListIterator(XList<E> list, int index)
-
-
-
Constructor Detail
-
GenericListIterator
public GenericListIterator(XList<E> list) throws IndexBoundsException
- Throws:
IndexBoundsException
-
GenericListIterator
public GenericListIterator(XList<E> list, int index) throws IndexBoundsException
- Throws:
IndexBoundsException
-
-
Method Detail
-
add
public void add(E e) throws UnsupportedOperationException
- Specified by:
addin interfaceListIterator<E>- Throws:
UnsupportedOperationException
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator<E>
-
next
public E next() throws NoSuchElementException
- Specified by:
nextin interfaceIterator<E>- Specified by:
nextin interfaceListIterator<E>- Throws:
NoSuchElementException
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<E>
-
previous
public E previous() throws NoSuchElementException
- Specified by:
previousin interfaceListIterator<E>- Throws:
NoSuchElementException
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<E>
-
remove
public void remove() throws NoSuchElementException, UnsupportedOperationException- Specified by:
removein interfaceIterator<E>- Specified by:
removein interfaceListIterator<E>- Throws:
NoSuchElementExceptionUnsupportedOperationException
-
set
public void set(E e) throws NoSuchElementException, UnsupportedOperationException
- Specified by:
setin interfaceListIterator<E>- Throws:
NoSuchElementExceptionUnsupportedOperationException
-
-