org.deduced
Class FixedPropertyInstanceCollection.FixedPropertyListIterator

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

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

Iterator for the fixed property collection. The returned format is in the form of Property objects


Field Summary
private  java.util.Iterator<K> keyIterator
          iterator used to browse the key list
 
Constructor Summary
FixedPropertyInstanceCollection.FixedPropertyListIterator(java.util.Collection<K> keyList)
          Iterator constructor
 
Method Summary
 boolean hasNext()
          (non-Javadoc)
 Property<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.FixedPropertyListIterator

public FixedPropertyInstanceCollection.FixedPropertyListIterator(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<Property<V>>
See Also:
Iterator.remove()

hasNext

public boolean hasNext()
(non-Javadoc)

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

next

public Property<V> next()
(non-Javadoc)

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