Package one.microstream.util.iterables
Class ArrayIterator<E>
- java.lang.Object
-
- one.microstream.util.iterables.ArrayIterator<E>
-
-
Constructor Summary
Constructors Constructor Description ArrayIterator(E[] array)
-
-
-
Constructor Detail
-
ArrayIterator
public ArrayIterator(E[] array)
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<E>- See Also:
Iterator.hasNext()
-
next
public E next()
- Specified by:
nextin interfaceIterator<E>- See Also:
Iterator.next()
-
remove
public void remove() throws UnsupportedOperationException- Specified by:
removein interfaceIterator<E>- Throws:
UnsupportedOperationException- See Also:
Iterator.remove()
-
-