uka.util
Class FloatSequence

java.lang.Object
  extended byuka.util.FloatSequence
All Implemented Interfaces:
FloatIterator
Direct Known Subclasses:
FloatQueue

public abstract class FloatSequence
extends java.lang.Object
implements FloatIterator

This is an abstract superclass for immutable iterators over collections of float values.

Author:
Bernhard Haumacher
See Also:
FloatIterator

Field Summary
static FloatIterator EMPTY
           
 
Constructor Summary
FloatSequence()
           
 
Method Summary
 void remove()
          Removes the last float value returned from the underlying collection.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface uka.util.FloatIterator
hasNext, next
 

Field Detail

EMPTY

public static final FloatIterator EMPTY
Constructor Detail

FloatSequence

public FloatSequence()
Method Detail

remove

public final void remove()
Description copied from interface: FloatIterator
Removes the last float value returned from the underlying collection.

Specified by:
remove in interface FloatIterator
Throws:
UnsupportedOperationException
See Also:
FloatIterator.remove()