org.apache.commons.collections.primitives.decorators
Class UnmodifiableByteIterator

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

public final class UnmodifiableByteIterator
extends Object

Since:
Commons Primitives 1.0
Version:
$Revision: 480463 $ $Date: 2006-11-29 09:15:23 +0100(mer, 29 nov 2006) $
Author:
Rodney Waldhoff

Method Summary
protected  ByteIterator getIterator()
           
 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(ByteIterator iterator)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

remove

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


getIterator

protected ByteIterator getIterator()

wrap

public static final ByteIterator wrap(ByteIterator iterator)

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


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