public class LongIteratorIterator implements Iterator(Code)
Adapts an
LongIterator LongIterator to the
java.util.Iterator Iterator interface.
This implementation delegates most methods
to the provided
LongIterator LongIterator
implementation in the "obvious" way.
since: Commons Primitives 1.0 version: $Revision: 1.3 $ $Date: 2003/10/16 20:49:39 $ author: Rodney Waldhoff
Create an
Iterator Iterator wrapping
the specified
LongIterator LongIterator . When
the given iterator is null,
returns null.
Parameters: iterator - the (possibly null) LongIterator LongIterator to wrap an Iterator Iterator wrapping the given iterator, or null when iterator isnull.