- All Superinterfaces:
TMap<K,V>
- All Known Implementing Classes:
TConcurrentHashMap
public interface TConcurrentMap<K,V>
extends TMap<K,V>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.teavm.classlib.java.util.TMap
TMap.Entry<K1,V1>
-
Method Summary
default void
boolean
boolean
default void
Methods inherited from interface org.teavm.classlib.java.util.TMap
clear, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
-
Method Details
-
-
-
-
-
replace
boolean replace(K key,
V oldValue,
V newValue)
- Specified by:
replace
in interface TMap<K,V>
-
-
-
-
-
compute
default V compute(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction)
- Specified by:
compute
in interface TMap<K,V>
-
merge
default V merge(K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction)
- Specified by:
merge
in interface TMap<K,V>