Class DominatorTree.Multimap<T>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<T,java.util.Set<T>>
-
- com.ensoftcorp.open.commons.algorithms.dominance.DominatorTree.Multimap<T>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,java.util.Map<T,java.util.Set<T>>
- Enclosing class:
- DominatorTree
public static class DominatorTree.Multimap<T> extends java.util.HashMap<T,java.util.Set<T>>
Multimap maps a key to a set of values.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Multimap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<T>
get(java.lang.Object key)
Fetch the set for a given key, creating it if necessary.
-
-
-
Method Detail
-
get
public java.util.Set<T> get(java.lang.Object key)
Fetch the set for a given key, creating it if necessary.
-
-