public interface SimpleIterator
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext()
Answer true iff there are more items to access.
|
java.lang.Object |
next()
Answer the current item AND advance the iterator to the next item.
|