com.ibm.wala.util.collections
Interface MultiMap<K,V>
- All Known Implementing Classes:
- ArraySetMultiMap, HashSetMultiMap
public interface MultiMap<K,V>
get
java.util.Set<V> get(K key)
put
boolean put(K key,
V val)
remove
boolean remove(K key,
V val)
keySet
java.util.Set<K> keySet()
containsKey
boolean containsKey(K key)
size
int size()
toString
java.lang.String toString()
- Overrides:
toString in class java.lang.Object
putAll
boolean putAll(K key,
java.util.Collection<? extends V> vals)
removeAll
java.util.Set<V> removeAll(K key)
clear
void clear()
isEmpty
boolean isEmpty()