org.joda.primitives.iterator
Interface FloatIterator

All Superinterfaces:
Iterator<Float>, PrimitiveIterator<Float>
All Known Subinterfaces:
FloatListIterator
All Known Implementing Classes:
AbstractFloatList.PListIterator, ArrayFloatCollection.PIterator, ArrayFloatIterator, ArrayFloatListIterator

public interface FloatIterator
extends PrimitiveIterator<Float>

Defines an iterator over primitive float values.

This interface extends Iterator allowing seamless integration with other APIs.

Since:
1.0
Version:
CODE GENERATED
Author:
Stephen Colebourne, Jason Tiscione

Method Summary
 float nextFloat()
          Gets the next value from the iterator
 
Methods inherited from interface org.joda.primitives.iterator.PrimitiveIterator
isModifiable, isResettable, reset
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

nextFloat

float nextFloat()
Gets the next value from the iterator

Returns:
the next available value
Throws:
NoSuchElementException - if there are no more values available


Copyright © 2005-2010 Joda.org. All Rights Reserved.