Package io.aether.utils
Class WeakIdenticalConcurrentHashMap<K,V>
- java.lang.Object
-
- io.aether.utils.WeakIdenticalConcurrentHashMap<K,V>
-
- All Implemented Interfaces:
java.util.concurrent.ConcurrentMap<K,V>,java.util.Map<K,V>
public class WeakIdenticalConcurrentHashMap<K,V> extends java.lang.Object implements java.util.concurrent.ConcurrentMap<K,V>
-
-
Constructor Summary
Constructors Constructor Description WeakIdenticalConcurrentHashMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)@NotNull java.util.Set<java.util.Map.Entry<K,V>>entrySet()Vget(java.lang.Object key)booleanisEmpty()@NotNull java.util.Set<K>keySet()Vput(K key, V value)voidputAll(@NotNull java.util.Map<? extends K,? extends V> m)VputIfAbsent(K key, V value)booleanremove(@NotNull java.lang.Object key, java.lang.Object value)Vremove(java.lang.Object key)Vreplace(K key, V value)booleanreplace(K key, V oldValue, V newValue)intsize()@NotNull java.util.Collection<V>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
remove
public boolean remove(@NotNull @NotNull java.lang.Object key, java.lang.Object value)
-
containsKey
public boolean containsKey(java.lang.Object key)
-
containsValue
public boolean containsValue(java.lang.Object value)
-
keySet
@NotNull public @NotNull java.util.Set<K> keySet()
-
values
@NotNull public @NotNull java.util.Collection<V> values()
-
-