E - Object type of objects contained in the iteration.X - Exception type that is thrown when a problem occurs during iteration.public interface Iteration<E,X extends Exception>
Iterator can not do
(it can only throw RuntimeExceptions.Iterator| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext()
Returns true if the iteration has more elements.
|
E |
next()
Returns the next element in the iteration.
|
void |
remove()
Removes from the underlying collection the last element returned by the
iteration (optional operation).
|
boolean hasNext()
throws X extends Exception
next() would return an element
rather than throwing a NoSuchElementException.)void remove()
throws X extends Exception
UnsupportedOperationException - if the remove operation is not supported by this Iteration.IllegalStateException - If the Iteration has been closed, or if next() has not
yet been called, or remove() has already been called
after the last call to next().X extends ExceptionCopyright © 2001-2013 Aduna. All Rights Reserved.