|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.collections.primitives.adapters.IteratorByteIterator
public class IteratorByteIterator
Adapts a Number
-valued
Iterator
to the ByteIterator
interface.
Iterator
implementation in the "obvious" way.
Field Summary | |
---|---|
private java.util.Iterator |
_iterator
|
Constructor Summary | |
---|---|
IteratorByteIterator(java.util.Iterator iterator)
Creates an ByteIterator wrapping
the specified Iterator . |
Method Summary | |
---|---|
boolean |
hasNext()
Returns true iff I have more elements. |
byte |
next()
Returns the next element in me. |
void |
remove()
Removes from my underlying collection the last element returned by me
(optional operation). |
static ByteIterator |
wrap(java.util.Iterator iterator)
Create an ByteIterator wrapping
the specified Iterator . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private java.util.Iterator _iterator
Constructor Detail |
---|
public IteratorByteIterator(java.util.Iterator iterator)
ByteIterator
wrapping
the specified Iterator
.
wrap(java.util.Iterator)
Method Detail |
---|
public static ByteIterator wrap(java.util.Iterator iterator)
ByteIterator
wrapping
the specified Iterator
. When
the given iterator is null
,
returns null
.
iterator
- the (possibly null
)
Iterator
to wrap
ByteIterator
wrapping the given
iterator, or null
when iterator is
null
.public boolean hasNext()
ByteIterator
true
iff I have more elements.
(In other words, returns true
iff
a subsequent call to next
will return
an element rather than throwing an exception.)
hasNext
in interface ByteIterator
true
iff I have more elementspublic byte next()
ByteIterator
next
in interface ByteIterator
public void remove()
ByteIterator
returned
by me
(optional operation).
remove
in interface ByteIterator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |