Package com.intellij.util.containers
Class BidirectionalMultiMap<K,V>
- java.lang.Object
-
- com.intellij.util.containers.BidirectionalMultiMap<K,V>
-
public class BidirectionalMultiMap<K,V> extends Object
- Author:
- nik
-
-
Constructor Summary
Constructors Constructor Description BidirectionalMultiMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(K key)
boolean
containsValue(V value)
Set<K>
getKeys()
Set<K>
getKeys(V value)
Set<V>
getValues()
Set<V>
getValues(K key)
boolean
isEmpty()
boolean
put(K key, V value)
void
remove(K key, V value)
boolean
removeKey(K key)
boolean
removeValue(V value)
-