public interface RemoteIterator<E>
| 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.
|
boolean hasNext()
throws IOException
true if the iteration has more elements.true if the iterator has more elements.IOException - if any IO error occursE next() throws IOException
NoSuchElementException - iteration has no more elements.IOException - if any IO error occursCopyright © 2008–2026 Apache Software Foundation. All rights reserved.