K - the type of keys maintained by this mapV - the type of mapped valuespublic interface IterableMap<K,V> extends Map<K,V>
A map iterator is an efficient way of iterating over maps. There is no need to access the entry set or cast to Map Entry objects.
| Modifier and Type | Method and Description |
|---|---|
MapIterator<K,V> |
mapIterator()
Obtains a
MapIterator over the map. |
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuesMapIterator<K,V> mapIterator()
MapIterator over the map.
A map iterator is an efficient way of iterating over maps. There is no need to access the entry set or cast to Map Entry objects.
Copyright © 2020. All rights reserved.