com.steptools.stdev
Class EntityInstanceSetIterator

java.lang.Object
  extended by com.steptools.stdev.EntityInstanceSetIterator
All Implemented Interfaces:
java.util.Iterator

public abstract class EntityInstanceSetIterator
extends java.lang.Object
implements java.util.Iterator

Strongly-typed iterator for sets of EntityInstance objects


Constructor Summary
EntityInstanceSetIterator()
           
 
Method Summary
 java.lang.Object next()
          Get the next object in the set.
abstract  EntityInstance nextInstance()
          Get the next object in the set, cast to an EntityInstance.
 void remove()
          Remove the current object from the set.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Iterator
hasNext
 

Constructor Detail

EntityInstanceSetIterator

public EntityInstanceSetIterator()
Method Detail

nextInstance

public abstract EntityInstance nextInstance()
Get the next object in the set, cast to an EntityInstance.

Returns:
The next object.

next

public java.lang.Object next()
Get the next object in the set.

Specified by:
next in interface java.util.Iterator
Returns:
The next object.

remove

public void remove()
Remove the current object from the set.

Specified by:
remove in interface java.util.Iterator