Class NativeTypedArrayIterator<T>
- java.lang.Object
- 
- org.mozilla.javascript.typedarrays.NativeTypedArrayIterator<T>
 
- 
- All Implemented Interfaces:
- java.util.Iterator<T>,- java.util.ListIterator<T>
 
 public class NativeTypedArrayIterator<T> extends java.lang.Object implements java.util.ListIterator<T>
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(T t)booleanhasNext()booleanhasPrevious()Tnext()intnextIndex()Tprevious()intpreviousIndex()voidremove()voidset(T t)
 
- 
- 
- 
Method Detail- 
hasNextpublic boolean hasNext() 
 - 
hasPreviouspublic boolean hasPrevious() - Specified by:
- hasPreviousin interface- java.util.ListIterator<T>
 
 - 
nextIndexpublic int nextIndex() - Specified by:
- nextIndexin interface- java.util.ListIterator<T>
 
 - 
previousIndexpublic int previousIndex() - Specified by:
- previousIndexin interface- java.util.ListIterator<T>
 
 - 
nextpublic T next() 
 - 
removepublic void remove() 
 
- 
 
-