public class ArrayBasedIterator<T> extends Object implements Iterator<T>
Implements an Iterator over the elements of a built-in Java array.
Iterator
ArrayBasedIterator(T[] array)
ArrayBasedIterator(T[] array, int start, int end)
boolean
hasNext()
T
next()
void
remove()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public ArrayBasedIterator(T[] array)
public ArrayBasedIterator(T[] array, int start, int end)
public boolean hasNext()
hasNext
Iterator<T>
public T next()
next
public void remove()
remove
Copyright © 2015. All rights reserved.