MapIterator using a Map entrySet. Reverse iteration is not supported. MapIterator it = map.mapIterator(); while (it.hasNext()) { Object key = it.next(); Object value = it.getValue(); it.setValue(newValue); }
@since 3.0
@version $Id: EntrySetMapIterator.java 1477802 2013-04-30 20:01:28Z tn $
| |
| |
| |
| |
| |
| |
| |
| |