|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.collections.primitives.adapters.DoubleIteratorIterator
public class DoubleIteratorIterator
Adapts an DoubleIterator
to the
Iterator
interface.
DoubleIterator
implementation in the "obvious" way.
Field Summary | |
---|---|
private DoubleIterator |
_iterator
|
Constructor Summary | |
---|---|
DoubleIteratorIterator(DoubleIterator iterator)
Creates an Iterator wrapping
the specified DoubleIterator . |
Method Summary | |
---|---|
boolean |
hasNext()
|
java.lang.Object |
next()
|
void |
remove()
|
static java.util.Iterator |
wrap(DoubleIterator iterator)
Create an Iterator wrapping
the specified DoubleIterator . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private DoubleIterator _iterator
Constructor Detail |
---|
public DoubleIteratorIterator(DoubleIterator iterator)
Iterator
wrapping
the specified DoubleIterator
.
wrap(org.apache.commons.collections.primitives.DoubleIterator)
Method Detail |
---|
public static java.util.Iterator wrap(DoubleIterator iterator)
Iterator
wrapping
the specified DoubleIterator
. When
the given iterator is null
,
returns null
.
iterator
- the (possibly null
)
DoubleIterator
to wrap
Iterator
wrapping the given
iterator, or null
when iterator is
null
.public boolean hasNext()
hasNext
in interface java.util.Iterator
public java.lang.Object next()
next
in interface java.util.Iterator
public void remove()
remove
in interface java.util.Iterator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |