public class SelfInitializingConcurrentHashMap<K,V> extends Object implements ConcurrentMap<K,V>
Constructor and Description |
---|
SelfInitializingConcurrentHashMap() |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
boolean |
equals(Object o) |
V |
get(Object key) |
int |
hashCode() |
boolean |
isEmpty() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> m) |
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() |
public final V putIfAbsent(K key, V value)
putIfAbsent
in interface ConcurrentMap<K,V>
public final boolean replace(K key, V oldValue, V newValue)
replace
in interface ConcurrentMap<K,V>
public final V replace(K key, V value)
replace
in interface ConcurrentMap<K,V>
public final boolean remove(Object key, Object value)
remove
in interface ConcurrentMap<K,V>
public final boolean containsKey(Object key)
containsKey
in interface Map<K,V>
public final boolean containsValue(Object value)
containsValue
in interface Map<K,V>
public boolean equals(Object o)
Copyright © 2012 JBoss, a division of Red Hat. All Rights Reserved.