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 void
clear()
boolean
containsKey(K key)
Set<V>
get(K key)
boolean
isEmpty()
Set<K>
keySet()
boolean
put(K key, V val)
boolean
putAll(K key, Collection<? extends V> vals)
boolean
remove(K key, V val)
Set<V>
removeAll(K key)
int
size()
String
toString()
-
-
-
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()
-
-