public interface StandardIterator<T>
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the iterator.
|
T |
next()
Get the next element in the interation
|
void |
open()
Open the iterator for operations.
|
void open() throws StandardException, java.io.IOException
StandardException
java.io.IOException
T next() throws StandardException, java.io.IOException
null
if no
more elements existStandardException
java.io.IOException
void close() throws StandardException, java.io.IOException
next()
should
no longer be called.StandardException
java.io.IOException