|
|||||||||
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
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 |
---|
Map.Entry<K,V> |
Method Summary | |
---|---|
Object |
putIfAbsent(Object key,
Object value)
Deprecated. |
boolean |
remove(Object key,
Object value)
Deprecated. |
Object |
replace(Object key,
Object value)
Deprecated. |
boolean |
replace(Object key,
Object oldValue,
Object 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 |
---|
Object putIfAbsent(Object key, Object value)
boolean remove(Object key, Object value)
boolean replace(Object key, Object oldValue, Object newValue)
Object replace(Object key, Object value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |