Package one.microstream.util.iterables
Class ArrayListReadOnlyIterator<E>
java.lang.Object
one.microstream.util.iterables.ArrayListReadOnlyIterator<E>
- All Implemented Interfaces:
 Iterator<E>,ListIterator<E>
public final class ArrayListReadOnlyIterator<E> extends Object implements ListIterator<E>
- 
Constructor Details
 - 
Method Details
- 
add
- Specified by:
 addin interfaceListIterator<E>- Parameters:
 e-- Throws:
 UnsupportedOperationException- See Also:
 ListIterator.add(java.lang.Object)
 - 
hasNext
public boolean hasNext()- Specified by:
 hasNextin interfaceIterator<E>- Specified by:
 hasNextin interfaceListIterator<E>- See Also:
 ListIterator.hasNext()
 - 
hasPrevious
public boolean hasPrevious()- Specified by:
 hasPreviousin interfaceListIterator<E>- See Also:
 ListIterator.hasPrevious()
 - 
next
- Specified by:
 nextin interfaceIterator<E>- Specified by:
 nextin interfaceListIterator<E>- See Also:
 ListIterator.next()
 - 
nextIndex
public int nextIndex()- Specified by:
 nextIndexin interfaceListIterator<E>- See Also:
 ListIterator.nextIndex()
 - 
previous
- Specified by:
 previousin interfaceListIterator<E>- See Also:
 ListIterator.previous()
 - 
previousIndex
public int previousIndex()- Specified by:
 previousIndexin interfaceListIterator<E>- See Also:
 ListIterator.previousIndex()
 - 
remove
- Specified by:
 removein interfaceIterator<E>- Specified by:
 removein interfaceListIterator<E>- Throws:
 UnsupportedOperationException- See Also:
 ListIterator.remove()
 - 
set
- Specified by:
 setin interfaceListIterator<E>- Parameters:
 e-- Throws:
 UnsupportedOperationException- See Also:
 ListIterator.set(java.lang.Object)
 
 -