org.deduced
Class FixedPropertyInstanceCollection.FixedPropertyListValueIterator

java.lang.Object
  extended by org.deduced.FixedPropertyInstanceCollection.FixedPropertyListValueIterator
All Implemented Interfaces:
java.util.Iterator<V>
Enclosing class:
FixedPropertyInstanceCollection<K,V>

private class FixedPropertyInstanceCollection.FixedPropertyListValueIterator
extends java.lang.Object
implements java.util.Iterator<V>

Iterator for the fixed property collection. The returned format is in the form of object values


Field Summary
private  java.util.Iterator<K> keyIterator
          iterator used to browse the key list
 
Constructor Summary
FixedPropertyInstanceCollection.FixedPropertyListValueIterator(java.util.Collection<K> keyList)
          Iterator constructor
 
Method Summary
 boolean hasNext()
          (non-Javadoc)
 V next()
          (non-Javadoc)
 void remove()
          (non-Javadoc)
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

keyIterator

private java.util.Iterator<K> keyIterator
iterator used to browse the key list

Constructor Detail

FixedPropertyInstanceCollection.FixedPropertyListValueIterator

public FixedPropertyInstanceCollection.FixedPropertyListValueIterator(java.util.Collection<K> keyList)
Iterator constructor

Parameters:
keyList - the key list of the collection
Method Detail

remove

public void remove()
(non-Javadoc)

Specified by:
remove in interface java.util.Iterator<V>
See Also:
Iterator.remove()

hasNext

public boolean hasNext()
(non-Javadoc)

Specified by:
hasNext in interface java.util.Iterator<V>
See Also:
Iterator.hasNext()

next

public V next()
(non-Javadoc)

Specified by:
next in interface java.util.Iterator<V>
See Also:
Iterator.next()