| bsh.BshIterator
All known Subclasses: bsh.collection.CollectionIterator,
BshIterator | public interface BshIterator (Code) | | An interface implemented by classes wrapping instances of iterators,
enumerations, collections, etc.
See Also: CollectionManager.getBshIterator(Object) |
hasNext | public boolean hasNext()(Code) | | Returns true if and only if there are more objects available
via the next() method
The next object |
next | public Object next()(Code) | | Fetch the next object in the iteration
The next object |
|
|