public class ArrayIterator<T>
extends java.lang.Object
implements java.util.ListIterator<T>
Copyright 2006 Partner Software, Inc.
| Constructor and Description |
|---|
ArrayIterator(T... values)
Create a new ArrayIterator for the given array.
|
ArrayIterator(T[] values,
int start,
int end)
Create a new ArrayIterator for the given array.
|
public ArrayIterator(T... values)
public ArrayIterator(T[] values, int start, int end)
public boolean hasNext()
public T next()
public void remove()
public boolean hasPrevious()
hasPrevious in interface java.util.ListIterator<T>public int nextIndex()
nextIndex in interface java.util.ListIterator<T>public int previousIndex()
previousIndex in interface java.util.ListIterator<T>