Package com.ibm.wala.util.collections
Interface MultiMap<K,V>
-
- All Known Implementing Classes:
ArraySetMultiMap,HashSetMultiMap
public interface MultiMap<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()booleancontainsKey(K key)Set<V>get(K key)booleanisEmpty()Set<K>keySet()booleanput(K key, V val)booleanputAll(K key, Collection<? extends V> vals)booleanremove(K key, V val)Set<V>removeAll(K key)intsize()StringtoString()
-
-
-
Method Detail
-
containsKey
boolean containsKey(K key)
-
size
int size()
-
putAll
boolean putAll(K key, Collection<? extends V> vals)
-
clear
void clear()
-
isEmpty
boolean isEmpty()
-
-