| bak.pcj.ShortIterator
All known Subclasses: bak.pcj.adapter.IteratorToShortIteratorAdapter,
ShortIterator | public interface ShortIterator (Code) | | This class represents iterators over collections of short values.
See Also: java.util.Iterator author: Søren Bak version: 1.0 2002/29/12 since: 1.0 |
Method Summary | |
boolean | hasNext() Indicates whether more short values can be returned by this
iterator. | short | next() Returns the next short value of this iterator. | void | remove() Removes the last short value returned from the underlying
collection. |
hasNext | boolean hasNext()(Code) | | Indicates whether more short values can be returned by this
iterator.
true if more short values can be returnedby this iterator; returns falseotherwise. See Also: ShortIterator.next() |
|
|