org.apache.commons.collections.primitives.adapters
Class LongIteratorIterator

java.lang.Object
  extended by org.apache.commons.collections.primitives.adapters.LongIteratorIterator
All Implemented Interfaces:
Iterator

public class LongIteratorIterator
extends Object
implements Iterator

Adapts an LongIterator to the Iterator interface.

This implementation delegates most methods to the provided LongIterator implementation in the "obvious" way.

Since:
Commons Primitives 1.0
Version:
$Revision: 480462 $ $Date: 2006-11-29 09:15:00 +0100 (Wed, 29 Nov 2006) $
Author:
Rodney Waldhoff

Constructor Summary
LongIteratorIterator(LongIterator iterator)
          Creates an Iterator wrapping the specified LongIterator.
 
Method Summary
 boolean hasNext()
           
 Object next()
           
 void remove()
           
static Iterator wrap(LongIterator iterator)
          Create an Iterator wrapping the specified LongIterator.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LongIteratorIterator

public LongIteratorIterator(LongIterator iterator)
Creates an Iterator wrapping the specified LongIterator.

See Also:
wrap(org.apache.commons.collections.primitives.LongIterator)
Method Detail

wrap

public static Iterator wrap(LongIterator iterator)
Create an Iterator wrapping the specified LongIterator. When the given iterator is null, returns null.

Parameters:
iterator - the (possibly null) LongIterator to wrap
Returns:
an Iterator wrapping the given iterator, or null when iterator is null.

hasNext

public boolean hasNext()
Specified by:
hasNext in interface Iterator

next

public Object next()
Specified by:
next in interface Iterator

remove

public void remove()
Specified by:
remove in interface Iterator


Copyright © 2002-2010 Apache Software Foundation. All Rights Reserved.