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