public interface SDBIterator
Modifier and Type | Method and Description |
---|---|
void |
end()
Advance the iterator to the last valid value in the iteration.
|
void |
init()
Perform any necessary initialization, and set the iterator value
to the first value in the iteration.
|
boolean |
next()
Advance the iterator by one step.
|
boolean |
valid()
Return true if the iterator currently has a valid value, false otherwise.
|
void init()
boolean next()
boolean valid()
void end()