Method Summary |
|
char | getKey() Returns the key of the current entry of this iterator.
the key of the current entry of this iterator. throws: IllegalStateException - if there is no current entry (i.e. |
E | getValue() Returns the value of the current entry of this iterator.
the value of the current entry of this iterator(which may be null). throws: IllegalStateException - if there is no current entry (i.e. |
boolean | hasNext() Indicates whether more entries can be returned by this
iterator. |
void | next() Advances to the next entry of this iterator. |
void | remove() Removes the last entry value returned from the underlying
map. |