Package one.microstream.util.iterables
Class SynchronizedListIterator<E>
- java.lang.Object
-
- one.microstream.util.iterables.SynchronizedListIterator<E>
-
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
public class SynchronizedListIterator<E> extends Object implements ListIterator<E>
-
-
Constructor Summary
Constructors Constructor Description SynchronizedListIterator(ListIterator<E> iterator)
-
-
-
Constructor Detail
-
SynchronizedListIterator
public SynchronizedListIterator(ListIterator<E> iterator)
-
-
Method Detail
-
add
public void add(E e)
- Specified by:
add
in interfaceListIterator<E>
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfaceListIterator<E>
-
next
public E next()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfaceListIterator<E>
-
previous
public E previous()
- Specified by:
previous
in interfaceListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfaceListIterator<E>
-
remove
public void remove()
-
set
public void set(E e)
- Specified by:
set
in interfaceListIterator<E>
-
-