Interface DataMapper.IOIterator<T>
- Type Parameters:
T- the type of element
- Enclosing class:
DataMapper
public static interface DataMapper.IOIterator<T>
An iterator that can throw
IOException.- Author:
- Holger Eichelberger, SSE
-
Method Summary
-
Method Details
-
hasNext
Returnstrueif the iteration has more elements.- Returns:
trueif the iteration has more elements- Throws:
IOException- if providing the next element caused an I/O problem
-
next
Returns the next element in the iteration.- Returns:
- the next element in the iteration
- Throws:
NoSuchElementException- if the iteration has no more elementsIOException- if checking for the next element caused an I/O problem
-