| bak.pcj.BooleanIterator
All known Subclasses: bak.pcj.adapter.IteratorToBooleanIteratorAdapter,
BooleanIterator | public interface BooleanIterator (Code) | | This class represents iterators over collections of boolean 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 boolean values can be returned by this
iterator. | boolean | next() Returns the next boolean value of this iterator. | void | remove() Removes the last boolean value returned from the underlying
collection. |
hasNext | boolean hasNext()(Code) | | Indicates whether more boolean values can be returned by this
iterator.
true if more boolean values can be returnedby this iterator; returns falseotherwise. See Also: BooleanIterator.next() |
|
|