com.inspirel.yami
Class Parameters.EntryIterator

java.lang.Object
  extended by com.inspirel.yami.Parameters.EntryIterator
All Implemented Interfaces:
java.util.Iterator<Parameters.Entry>
Enclosing class:
Parameters

public static class Parameters.EntryIterator
extends java.lang.Object
implements java.util.Iterator<Parameters.Entry>

Iterator class for visiting all entries in the collection.


Method Summary
 boolean hasNext()
          Returns true if the iteration has more entries.
 Parameters.Entry next()
          Returns the next Parameters.Entry in the iteration.
 void remove()
          This operation is not supported.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

hasNext

public boolean hasNext()
Returns true if the iteration has more entries. (In other words, returns true if next would return a valid Parameters.Entry object rather than throwing an exception.)

Specified by:
hasNext in interface java.util.Iterator<Parameters.Entry>
Returns:
true if the iteration has more entries

next

public Parameters.Entry next()
Returns the next Parameters.Entry in the iteration.

Specified by:
next in interface java.util.Iterator<Parameters.Entry>
Returns:
the next entry in the iteration
Throws:
java.util.NoSuchElementException - - iteration has no more entries

remove

public void remove()
This operation is not supported.

Specified by:
remove in interface java.util.Iterator<Parameters.Entry>
Throws:
java.lang.UnsupportedOperationException