Interface MapCursor<K,V>
- All Superinterfaces:
UnmodifiableMapCursor<K,
V>
Cursor to iterate over a mutable map.
- Since:
- 19.0
-
Method Summary
Methods inherited from interface UnmodifiableMapCursor
advance, getKey, getValue
-
Method Details
-
remove
void remove()Remove the current entry from the map. May only be called once. After callingremove()
, it is no longer valid to callUnmodifiableMapCursor.getKey()
orUnmodifiableMapCursor.getValue()
on the current entry.- Since:
- 19.0
-
setValue
-