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