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

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

public class IteratorByteIterator
extends java.lang.Object
implements ByteIterator

Adapts a Number-valued Iterator to the ByteIterator interface.

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

Since:
Commons Primitives 1.0
Version:
$Revision: 1.3 $ $Date: 2003/10/16 20:49:39 $
Author:
Rodney Waldhoff

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

_iterator

private java.util.Iterator _iterator
Constructor Detail

IteratorByteIterator

public IteratorByteIterator(java.util.Iterator iterator)
Creates an ByteIterator wrapping the specified Iterator.

See Also:
wrap(java.util.Iterator)
Method Detail

wrap

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

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

hasNext

public boolean hasNext()
Description copied from interface: ByteIterator
Returns 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.)

Specified by:
hasNext in interface ByteIterator
Returns:
true iff I have more elements

next

public byte next()
Description copied from interface: ByteIterator
Returns the next element in me.

Specified by:
next in interface ByteIterator
Returns:
the next element in me

remove

public void remove()
Description copied from interface: ByteIterator
Removes from my underlying collection the last element returned by me (optional operation).

Specified by:
remove in interface ByteIterator


Copyright (c) 2002-2003 - Apache Software Foundation