|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
ConcurrentMap
is available on Java 5+ anyway
@Deprecated public interface ConcurrentMap<K,V>
Common interface for a concurrent Map, as exposed by
CollectionFactory.createConcurrentMap(int). Mirrors
ConcurrentMap, allowing to be backed by a
JDK ConcurrentHashMap as well as a backport-concurrent ConcurrentHashMap.
Check out the ConcurrentMap javadoc
for details on the interface's methods.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
java.util.Map.Entry<K,V> |
| Method Summary | |
|---|---|
V |
putIfAbsent(K key,
V value)
Deprecated. |
boolean |
remove(java.lang.Object key,
java.lang.Object value)
Deprecated. |
V |
replace(K key,
V value)
Deprecated. |
boolean |
replace(K key,
V oldValue,
V newValue)
Deprecated. |
| Methods inherited from interface java.util.Map |
|---|
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
| Method Detail |
|---|
V putIfAbsent(K key,
V value)
boolean remove(java.lang.Object key,
java.lang.Object value)
boolean replace(K key,
V oldValue,
V newValue)
V replace(K key,
V value)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||