public class NativeTypedArrayIterator<T>
extends java.lang.Object
implements java.util.ListIterator<T>
| Modifier and Type | Method and Description | 
|---|---|
| void | add(T t) | 
| boolean | hasNext() | 
| boolean | hasPrevious() | 
| T | next() | 
| int | nextIndex() | 
| T | previous() | 
| int | previousIndex() | 
| void | remove() | 
| void | set(T t) | 
public boolean hasNext()
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>public T next()
public void remove()