public interface MultiMap<K,V> extends Iterable<heros.solver.Pair<K,V>>
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
contains(K key,
V value) |
boolean |
containsKey(K key) |
boolean |
containsValue(V value) |
Set<V> |
get(K o) |
boolean |
isEmpty() |
Set<K> |
keySet() |
int |
numKeys() |
boolean |
put(K key,
V value) |
boolean |
putAll(K key,
Collection<V> values) |
boolean |
putAll(Map<K,Collection<V>> m) |
boolean |
putAll(MultiMap<K,V> m) |
boolean |
putMap(Map<K,V> m) |
boolean |
remove(K key) |
boolean |
remove(K key,
V value) |
boolean |
removeAll(K key,
Collection<V> values) |
int |
size()
Gets the number of keys in this MultiMap
|
Set<V> |
values() |
forEach, iterator, spliteratorboolean isEmpty()
int numKeys()
boolean containsKey(K key)
boolean containsValue(V value)
boolean putAll(K key, Collection<V> values)
boolean putAll(Map<K,Collection<V>> m)
boolean remove(K key)
boolean removeAll(K key, Collection<V> values)
int size()
void clear()
Copyright © 2024 Soot OSS. All rights reserved.