K
- V
- public class ConcurrentBiMap<K,V>
extends java.lang.Object
implements java.util.Map<K,V>
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<K,V> |
forwardMap |
protected java.util.Map<V,K> |
reverseMap |
Modifier | Constructor and Description |
---|---|
|
ConcurrentBiMap() |
protected |
ConcurrentBiMap(java.util.Map<K,V> forwardMap,
java.util.Map<V,K> reverseMap) |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(java.lang.Object key) |
boolean |
containsValue(java.lang.Object value) |
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet() |
V |
get(java.lang.Object key) |
java.util.Map<V,K> |
inverse() |
boolean |
isEmpty() |
java.util.Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(java.util.Map<? extends K,? extends V> m) |
V |
remove(java.lang.Object key) |
int |
size() |
java.util.Collection<V> |
values() |
Copyright © 2018 The Apache Software Foundation