Package com.intellij.util.containers
Class ConcurrentWeakValueHashMap<K,V>
- java.lang.Object
-
- com.intellij.util.containers.ConcurrentWeakValueHashMap<K,V>
-
- All Implemented Interfaces:
ConcurrentMap<K,V>
,Map<K,V>
public final class ConcurrentWeakValueHashMap<K,V> extends Object implements ConcurrentMap<K,V>
-
-
Constructor Summary
Constructors Constructor Description ConcurrentWeakValueHashMap()
ConcurrentWeakValueHashMap(int initialCapaciy, float loadFactor, int concurrenycLevel)
ConcurrentWeakValueHashMap(Map<K,V> map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<K,V>>
entrySet()
V
get(Object key)
boolean
isEmpty()
Set<K>
keySet()
void
processQueue()
V
put(K key, V value)
void
putAll(Map<? extends K,? extends V> t)
V
putIfAbsent(K key, V value)
V
remove(Object key)
boolean
remove(Object key, Object value)
V
replace(K key, V value)
boolean
replace(K key, V oldValue, V newValue)
int
size()
String
toString()
Collection<V>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.concurrent.ConcurrentMap
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAll
-
-
-
-
Method Detail
-
processQueue
public void processQueue()
-
putIfAbsent
public V putIfAbsent(@NotNull K key, V value)
- Specified by:
putIfAbsent
in interfaceConcurrentMap<K,V>
- Specified by:
putIfAbsent
in interfaceMap<K,V>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<K,V>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<K,V>
-
-