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:
hasNext
in interfaceIterator<E>
- See Also:
Iterator.hasNext()
-
next
public E next()
- Specified by:
next
in interfaceIterator<E>
- See Also:
Iterator.next()
-
remove
public void remove() throws UnsupportedOperationException
- Specified by:
remove
in interfaceIterator<E>
- Throws:
UnsupportedOperationException
- See Also:
Iterator.remove()
-
-