All Methods Instance Methods Abstract Methods Default Methods
Modifier and Type |
Method and Description |
void |
clear() |
default V |
compute(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction) |
default V |
computeIfAbsent(K key,
Function<? super K,? extends V> mappingFunction) |
default V |
computeIfPresent(K key,
BiFunction<? super K,? super V,? extends V> remappingFunction) |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
TSet<TMap.Entry<K,V>> |
entrySet() |
V |
get(Object key) |
default V |
getOrDefault(K key,
V defaultValue) |
boolean |
isEmpty() |
TSet<K> |
keySet() |
default V |
merge(K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction) |
V |
put(K key,
V value) |
void |
putAll(TMap<? extends K,? extends V> m) |
default V |
putIfAbsent(K key,
V value) |
V |
remove(Object key) |
default V |
replace(K key,
V value) |
default boolean |
replace(K key,
V value,
V newValue) |
int |
size() |
TCollection<V> |
values() |