Package io.undertow.util
Class CopyOnWriteMap<K,V>
- java.lang.Object
-
- io.undertow.util.CopyOnWriteMap<K,V>
-
- All Implemented Interfaces:
ConcurrentMap<K,V>,Map<K,V>
public class CopyOnWriteMap<K,V> extends Object implements ConcurrentMap<K,V>
A basic copy on write map. It simply delegates to an underlying map, that is swapped out every time the map is updated. Note: this is not a secure map. It should not be used in situations where the map is populated from user input.- Author:
- Stuart Douglas
-
-
Constructor Summary
Constructors Constructor Description CopyOnWriteMap()CopyOnWriteMap(Map<K,V> existing)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,V>>entrySet()Vget(Object key)booleanisEmpty()Set<K>keySet()Vput(K key, V value)voidputAll(Map<? extends K,? extends V> m)VputIfAbsent(K key, V value)Vremove(Object key)booleanremove(Object key, Object value)VremoveInternal(Object key)Vreplace(K key, V value)booleanreplace(K key, V oldValue, V newValue)intsize()Collection<V>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.concurrent.ConcurrentMap
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAll
-
-
-
-
Method Detail
-
putIfAbsent
public V putIfAbsent(K key, V value)
- Specified by:
putIfAbsentin interfaceConcurrentMap<K,V>- Specified by:
putIfAbsentin interfaceMap<K,V>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<K,V>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<K,V>
-
-