Package org.n52.janmayen
Interface ThrowingIterator<T,X extends Exception>
-
- Type Parameters:
T- the element's typeX- the type of the exception that may be thrown
- All Known Implementing Classes:
AbstractThrowingIterator
public interface ThrowingIterator<T,X extends Exception>A throwing variant ofIterator.- See Also:
Iterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidforEachRemaining(ThrowingConsumer<? super T,? extends X> action)Performs the given action for each remaining element until all elements have been processed or the action throws an exception.booleanhasNext()Returnstrueif the iteration has more elements.Tnext()Returns the next element in the iteration.default voidremove()Removes from the underlying collection the last element returned by this iterator (optional operation).
-
-
-
Method Detail
-
forEachRemaining
default void forEachRemaining(ThrowingConsumer<? super T,? extends X> action) throws X extends Exception
Performs the given action for each remaining element until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is specified. Exceptions thrown by the action are relayed to the caller.- Parameters:
action- The action to be performed for each element- Throws:
NullPointerException- if the specified action is nullX- if iteration failsX extends Exception- See Also:
Iterator.forEachRemaining(java.util.function.Consumer)
-
next
@CheckReturnValue T next() throws NoSuchElementException, X extends Exception
Returns the next element in the iteration.- Returns:
- the next element in the iteration
- Throws:
NoSuchElementException- if the iteration has no more elementsX- if the next element could not be acquiredX extends Exception- See Also:
Iterator.next()
-
hasNext
@CheckReturnValue boolean hasNext() throws X extends ExceptionReturnstrueif the iteration has more elements. (In other words, returnstrueifnext()would return an element rather than throwing an exception.)- Returns:
trueif the iteration has more elements- Throws:
X- if the check for the next value failsX extends Exception- See Also:
Iterator.hasNext()
-
remove
default void remove() throws X extends ExceptionRemoves from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call tonext(). The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method. The default implementation throws an instance ofUnsupportedOperationExceptionand performs no other action.- Throws:
UnsupportedOperationException- if theremoveoperation is not supported by this iteratorIllegalStateException- if thenextmethod has not yet been called, or theremovemethod has already been called after the last call to thenextmethodX- if the remove operations failsX extends Exception- See Also:
Iterator.remove()
-
-