K
- the type of keys maintained by this mapV
- the type of mapped valuespublic interface PMap<K,V>
Modifier and Type | Interface and Description |
---|---|
static interface |
PMap.Consumer<K,V>
Represents an operation that accepts two input arguments and returns no result.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Map.Entry<K,V>> |
entriesIterator()
Iterates over all elements.
|
void |
forEach(PMap.Consumer<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) |
PMap<K,V> remove(K key)
void forEach(PMap.Consumer<K,V> action)
boolean isEmpty()
Copyright © 2012–2016 SonarSource. All rights reserved.