K - the type of keys maintained by this mapV - the type of mapped valuespublic interface PMap<K,V>
| Modifier and Type | Method | Description |
|---|---|---|
void |
forEach(BiConsumer<K,V> action) |
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
|
V |
get(K key) |
|
boolean |
isEmpty() |
|
PMap<K,V> |
put(K key,
V value) |
|
PMap<K,V> |
remove(K key) |
|
String |
toString() |
The string representation consists of a list of key-value mappings in the ascending order of hash codes of keys.
|
PMap<K,V> put(K key, V value)
PMap<K,V> remove(K key)
void forEach(BiConsumer<K,V> action)
boolean isEmpty()
String toString()
Copyright © 2012–2018 SonarSource. All rights reserved.