Package com.Ostermiller.util
Class ArrayIterator<ElementType>
java.lang.Object
com.Ostermiller.util.ArrayIterator<ElementType>
- Type Parameters:
ElementType- Type of array over which to iterate
- All Implemented Interfaces:
Iterator<ElementType>
Converts an array to an iterator.
More information about this class is available from ostermiller.org.
- Since:
- ostermillerutils 1.03.00
- Author:
- Stephen Ostermiller https://ostermiller.org/contact.pl?regarding=Java+Utilities
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanhasNext()Tests if this Iterator contains more elements.next()Returns the next element of this Iterator if this Iterator object has at least one more element to provide.voidremove()Removes the last object from the array by setting the slot in the array to null.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
ArrayIterator
Create an Iterator from an Array.- Parameters:
array- of objects on which to enumerate.- Since:
- ostermillerutils 1.03.00
-
-
Method Details
-
hasNext
public boolean hasNext()Tests if this Iterator contains more elements.- Specified by:
hasNextin interfaceIterator<ElementType>- Returns:
- true if and only if this Iterator object contains at least one more element to provide; false otherwise.
- Since:
- ostermillerutils 1.03.00
-
next
Returns the next element of this Iterator if this Iterator object has at least one more element to provide.- Specified by:
nextin interfaceIterator<ElementType>- Returns:
- the next element of this Iterator.
- Throws:
NoSuchElementException- if no more elements exist.- Since:
- ostermillerutils 1.03.00
-
remove
public void remove()Removes the last object from the array by setting the slot in the array to null. This method can be called only once per call to next.- Specified by:
removein interfaceIterator<ElementType>- Throws:
IllegalStateException- if the next method has not yet been called, or the remove method has already been called after the last call to the next method.- Since:
- ostermillerutils 1.03.00
-