V |
Long2ObjectCache.compute(long key,
LongObjectToObjectFunction<? super V,? extends V> remappingFunction) |
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no
current mapping).
|
V |
Long2ObjectHashMap.compute(long key,
LongObjectToObjectFunction<? super V,? extends V> remappingFunction) |
Attempts to compute a mapping for the specified key and its current mapped
value (or null if there is no current mapping).
|
V |
Long2ObjectCache.computeIfPresent(long key,
LongObjectToObjectFunction<? super V,? extends V> remappingFunction) |
If the value for the specified key is present attempts to compute a new mapping given the key and its current
mapped value.
|
V |
Long2ObjectHashMap.computeIfPresent(long key,
LongObjectToObjectFunction<? super V,? extends V> remappingFunction) |
If the value for the specified key is present and non-null, attempts to compute a new
mapping given the key and its current mapped value.
|
void |
Long2ObjectCache.replaceAllLong(LongObjectToObjectFunction<? super V,? extends V> function) |
Replaces each entry's value with the result of invoking the given function on that entry until all entries have
been processed or the function throws an exception.
|
void |
Long2ObjectHashMap.replaceAllLong(LongObjectToObjectFunction<? super V,? extends V> function) |
Primitive specialised version of Map.replaceAll(BiFunction) .
|