| com.uwyn.rife.pcj.IntIterator
IntIterator | public interface IntIterator (Code) | | This class represents iterators over collections of int 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 int values can be returned by this
iterator. | int | next() Returns the next int value of this iterator. | void | remove() Removes the last int value returned from the underlying
collection. |
hasNext | boolean hasNext()(Code) | | Indicates whether more int values can be returned by this
iterator.
true if more int values can be returnedby this iterator; returns falseotherwise. See Also: IntIterator.next() |
next | int next()(Code) | | Returns the next int value of this iterator.
the next int value of this iterator. throws: NoSuchElementException - if no more elements are available from thisiterator. See Also: IntIterator.hasNext() |
|
|