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

java.lang.Object
  |
  +--org.apache.commons.collections.primitives.decorators.ProxyFloatIterator
        |
        +--org.apache.commons.collections.primitives.decorators.UnmodifiableFloatIterator
All Implemented Interfaces:
FloatIterator

public final class UnmodifiableFloatIterator
extends org.apache.commons.collections.primitives.decorators.ProxyFloatIterator

Since:
Commons Primitives 1.0
Version:
$Revision: 1.1 $ $Date: 2003/10/29 20:07:54 $

Method Summary
 boolean hasNext()
          Returns true iff I have more elements.
 float next()
          Returns the next element in me.
 void remove()
          Removes from my underlying collection the last element returned by me (optional operation).
static org.apache.commons.collections.primitives.FloatIterator wrap(org.apache.commons.collections.primitives.FloatIterator iterator)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

remove

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


wrap

public static final org.apache.commons.collections.primitives.FloatIterator wrap(org.apache.commons.collections.primitives.FloatIterator iterator)

hasNext

public boolean hasNext()
Description copied from interface: FloatIterator
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 FloatIterator
Returns:
true iff I have more elements

next

public float next()
Description copied from interface: FloatIterator
Returns the next element in me.

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


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