| Modifier and Type | Method and Description |
|---|---|
default 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) |
default boolean |
containsValue(Object value) |
default V |
merge(K key,
V value,
BiFunction<? super V,? super V,? extends V> remappingFunction) |
default V |
put(K key,
V value) |
default void |
putAll(Map<? extends K,? extends V> m) |
default V |
putIfAbsent(K key,
V value) |
default V |
remove(Object key) |
default boolean |
remove(Object key,
Object value) |
default V |
replace(K key,
V value) |
default boolean |
replace(K key,
V oldValue,
V newValue) |
default void |
replaceAll(BiFunction<? super K,? super V,? extends V> function) |
default Collection<V> |
values() |
default boolean containsValue(Object value)
containsValue in interface Map<K,V>default V computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
computeIfAbsent in interface Map<K,V>default V computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction)
computeIfPresent in interface Map<K,V>default V merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction)
default void replaceAll(BiFunction<? super K,? super V,? extends V> function)
replaceAll in interface Map<K,V>Copyright © 2017. All rights reserved.