Class HashSetMultiMap<K,V>
- java.lang.Object
-
- soot.jimple.spark.ondemand.genericutil.HashSetMultiMap<K,V>
-
- All Implemented Interfaces:
MultiMap<K,V>
- Direct Known Subclasses:
DemandCSPointsTo.CallSiteToTargetsMap
public class HashSetMultiMap<K,V> extends Object
-
-
Constructor Summary
Constructors Constructor Description HashSetMultiMap()
HashSetMultiMap(boolean create)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(K key)
protected Set<V>
createSet()
protected Set<V>
emptySet()
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
-
emptySet
protected Set<V> emptySet()
-
containsKey
public boolean containsKey(K key)
- Specified by:
containsKey
in interfaceMultiMap<K,V>
-
toString
public String toString()
-
putAll
public boolean putAll(K key, Collection<? extends V> vals)
-
-