Uses of Class
eu.bandm.tools.util.java.IncrementalMap
Packages that use IncrementalMap
Package
Description
-
Uses of IncrementalMap in eu.bandm.tools.util.java
Methods in eu.bandm.tools.util.java that return IncrementalMapModifier and TypeMethodDescriptionAttempts to compute a mapping for the specified key and its current mapped value, ornullif there is no current mapping.IncrementalMap.computingIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) Attempts to compute a mapping for the specified key if there is no current mapped value.IncrementalMap.computingIfPresent(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Attempts to compute a mapping for the specified key and its current mapped value, if there is one.static <K,V> IncrementalMap <K, V> IncrementalMap.empty()Returns an empty map.IncrementalMap.merging(K key, V newValue, BiFunction<? super V, ? super @Opt V, ? extends V> remappingFunction) Returns a variant of this map where the given key is mapped to the given value.Returns a variant of this map where the given key is unmapped.Methods in eu.bandm.tools.util.java that return types with arguments of type IncrementalMapModifier and TypeMethodDescriptionIncrementalMap.computeChange(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) Attempts to compute a mapping for the specified key and its current mapped value, ornullif there is no current mapping.