Method Summary |
|
public Object | getKey() Gets the current key, which is the key returned by the last call
to next() . |
public Object | getValue() Gets the current value, which is the value associated with the last key
returned by next() . |
public boolean | hasNext() Checks to see if there are more entries still to be iterated. |
public Object | next() Gets the next key from the Map . |
public void | remove() Removes the last returned key from the underlying Map . |
public void | reset() Resets the state of the iterator. |
public Object | setValue(Object value) Sets the value associated with the current key. |
public String | toString() Gets the iterator as a String. |