Class ArrayIterator<T>
- java.lang.Object
- 
- org.eclipse.net4j.util.collection.ArrayIterator<T>
 
- 
- All Implemented Interfaces:
- java.util.Iterator<T>
 
 public class ArrayIterator<T> extends java.lang.Object implements java.util.Iterator<T>An object that iterates over the elements of an array- Since:
- 3.0
- Author:
- Eike Stepper
 
- 
- 
Constructor SummaryConstructors Constructor Description ArrayIterator(T[] elements)ArrayIterator(T[] elements, int firstElement)ArrayIterator(T[] elements, int firstElement, int lastElement)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Tnext()voidremove()Unsupported.
 
- 
- 
- 
Method Detail- 
hasNextpublic boolean hasNext() - Specified by:
- hasNextin interface- java.util.Iterator<T>
 
 - 
nextpublic T next() throws java.util.NoSuchElementException - Specified by:
- nextin interface- java.util.Iterator<T>
- Throws:
- java.util.NoSuchElementException
 
 - 
removepublic void remove() Unsupported.- Specified by:
- removein interface- java.util.Iterator<T>
- Throws:
- java.lang.UnsupportedOperationException- always
 
 
- 
 
-