public interface DoubleLongMap extends Map<Double,Long>, Container
DoubleLongMapFactory
,
@KolobokeMap
Modifier and Type | Method and Description |
---|---|
long |
addValue(double key,
long addition)
Adds the given value
addition to the value associated with the specified key,
or to the default value if this map contains no mapping for
the key, and associates the resulting value with the key. |
long |
addValue(double key,
long addition,
long initialValue)
Adds the given value
addition to the value associated with the specified key,
or the given initialValue if this map contains no mapping for the key, and associates
the resulting value with the key. |
Long |
compute(Double key,
BiFunction<? super Double,? super Long,? extends Long> remappingFunction)
Deprecated.
Use specialization
compute(double, DoubleLongToLongFunction) instead |
long |
compute(double key,
DoubleLongToLongFunction remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value
(or default
value if there is no current mapping).
|
long |
computeIfAbsent(double key,
DoubleToLongFunction mappingFunction)
If the specified key is not already associated with a value, attempts
to compute its value using the given mapping function and enters it into this map
.
|
Long |
computeIfAbsent(Double key,
Function<? super Double,? extends Long> mappingFunction)
Deprecated.
Use specialization
computeIfAbsent(double, DoubleToLongFunction) instead |
Long |
computeIfPresent(Double key,
BiFunction<? super Double,? super Long,? extends Long> remappingFunction)
Deprecated.
Use specialization
computeIfPresent(double, DoubleLongToLongFunction) instead |
long |
computeIfPresent(double key,
DoubleLongToLongFunction remappingFunction)
If the value for the specified key is present,
attempts to compute a new mapping given the key and its current mapped value.
|
boolean |
containsKey(double key)
Returns
true if this map contains a mapping for the specified key. |
boolean |
containsKey(Object key)
Deprecated.
Use specialization
containsKey(double) instead |
boolean |
containsValue(long value)
Returns
true if this map maps one or more keys to the specified value. |
boolean |
containsValue(Object value)
Deprecated.
Use specialization
containsValue(long) instead |
DoubleLongCursor |
cursor()
Returns a new cursor over the entries of this map.
|
long |
defaultValue()
Returns the default value of this map, which is used instead of
null
in primitive specialization methods, when the key is absent in the map. |
ObjSet<Map.Entry<Double,Long>> |
entrySet() |
void |
forEach(BiConsumer<? super Double,? super Long> action)
Deprecated.
Use specialization
forEach(DoubleLongConsumer) instead |
void |
forEach(DoubleLongConsumer action)
Performs the given
action on each entry in this map until all entries
have been processed or the action throws an Exception . |
boolean |
forEachWhile(DoubleLongPredicate predicate)
Checks the given
predicate on each entry in this map until all entries
have been processed or the predicate returns false for some entry,
or throws an Exception . |
long |
get(double key)
Returns the value to which the specified key is mapped, or default
value if this map
contains no mapping for the key.
|
Long |
get(Object key)
Deprecated.
Use specialization
get(double) instead |
long |
getOrDefault(double key,
long defaultValue)
Returns the value to which the specified key is mapped, or
defaultValue if this map
contains no mapping for the key. |
Long |
getOrDefault(Object key,
Long defaultValue)
Deprecated.
Use specialization
getOrDefault(double, long) instead |
DoubleSet |
keySet() |
Long |
merge(Double key,
Long value,
BiFunction<? super Long,? super Long,? extends Long> remappingFunction)
Deprecated.
Use specialization
merge(double, long, LongBinaryOperator) instead |
long |
merge(double key,
long value,
LongBinaryOperator remappingFunction)
If the specified key is not already associated with a value, associates
it with the given value, otherwise, replaces the value with the results of the given
remapping function.
|
long |
put(double key,
long value)
Associates the specified value with the specified key in this map (optional operation).
|
Long |
put(Double key,
Long value)
Deprecated.
Use specialization
put(double, long) instead |
long |
putIfAbsent(double key,
long value)
If the specified key is not already associated with a value, associates
it with the given value and returns default
value, else returns the current value.
|
Long |
putIfAbsent(Double key,
Long value)
Deprecated.
Use specialization
putIfAbsent(double, long) instead |
long |
remove(double key)
Removes the mapping for a key from this map if it is present (optional operation).
|
boolean |
remove(double key,
long value)
Removes the entry for the specified key only if it is currently mapped to the specified
value.
|
Long |
remove(Object key)
Deprecated.
Use specialization
remove(double) instead |
boolean |
remove(Object key,
Object value)
Deprecated.
Use specialization
remove(double, long) instead |
boolean |
removeIf(DoubleLongPredicate filter)
Removes all of the entries of this collection that satisfy the given predicate.
|
long |
replace(double key,
long value)
Replaces the entry for the specified key only if it is currently mapped to some value.
|
Long |
replace(Double key,
Long value)
Deprecated.
Use specialization
replace(double, long) instead |
boolean |
replace(double key,
long oldValue,
long newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
|
boolean |
replace(Double key,
Long oldValue,
Long newValue)
Deprecated.
Use specialization
replace(double, long, long) instead |
void |
replaceAll(BiFunction<? super Double,? super Long,? extends Long> function)
Deprecated.
Use specialization
replaceAll(DoubleLongToLongFunction) instead |
void |
replaceAll(DoubleLongToLongFunction function)
Replaces each entry's value with the result of invoking the given function on that entry,
in the order entries are returned by an entry set iterator, until all entries have been
processed or the function throws an exception.
|
LongCollection |
values() |
clear, ensureCapacity, isEmpty, shrink, size, sizeAsLong
long defaultValue()
null
in primitive specialization methods, when the key is absent in the map.DoubleLongMapFactory.withDefaultValue(long)
@Deprecated boolean containsKey(Object key)
containsKey(double)
insteadcontainsKey
in interface Map<Double,Long>
boolean containsKey(double key)
true
if this map contains a mapping for the specified key.key
- the double
key whose presence in this map is to be testedtrue
if this map contains a mapping for the specified key@Deprecated boolean containsValue(Object value)
containsValue(long)
insteadcontainsValue
in interface Map<Double,Long>
boolean containsValue(long value)
true
if this map maps one or more keys to the specified value. This operation
will probably require time linear in the map size for most implementations
of the DoubleLongMap
interface.value
- the long
value whose presence in this map is to be testedtrue
if this map maps one or more keys to the specified value@Nullable @Deprecated Long get(Object key)
get(double)
insteadlong get(double key)
key
- the key whose associated value is to be returned@Deprecated Long getOrDefault(Object key, Long defaultValue)
getOrDefault(double, long)
insteadgetOrDefault
in interface Map<Double,Long>
long getOrDefault(double key, long defaultValue)
defaultValue
if this map
contains no mapping for the key.key
- the key whose associated value is to be returneddefaultValue
- the value to return if the specified key
is absent in the mapdefaultValue
if this map contains no mapping for the key@Deprecated void forEach(@Nonnull BiConsumer<? super Double,? super Long> action)
forEach(DoubleLongConsumer)
insteadvoid forEach(@Nonnull DoubleLongConsumer action)
action
on each entry in this map until all entries
have been processed or the action throws an Exception
.
Exceptions thrown by the action are relayed to the caller. The entries
will be processed in the same order as the entry set iterator unless that
order is unspecified in which case implementations may use an order which
differs from the entry set iterator.action
- The action to be performed for each entryboolean forEachWhile(@Nonnull DoubleLongPredicate predicate)
predicate
on each entry in this map until all entries
have been processed or the predicate returns false
for some entry,
or throws an Exception
. Exceptions thrown by the predicate are relayed to the caller.
The entries will be processed in the same order as the entry set iterator unless that order is unspecified in which case implementations may use an order which differs from the entry set iterator.
If the map is empty, this method returns true
immediately.
predicate
- the predicate to be checked for each entrytrue
if the predicate returned true
for all entries of the map,
false
if it returned false
for the entry@Nonnull DoubleLongCursor cursor()
Basic cursor usage idiom is:
for (DoubleLongCursor cur = map.cursor(); cur.moveNext();) {
// Work with cur.key() and cur.value()
// Call cur.remove() to remove the current entry
}
@Deprecated Long put(Double key, Long value)
put(double, long)
insteadlong put(double key, long value)
m
is said to contain a mapping for a key k
if and only if m.containsKey(k)
would return true
.)key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keykey
, or default
value if there was
no mapping for key
. (A default
value return can also indicate that the map
previously associated default
value with key
.)UnsupportedOperationException
- if the put
operation
is not supported by this mapIllegalArgumentException
- if some property of a specified key
or value prevents it from being stored in this map@Nullable @Deprecated Long putIfAbsent(Double key, Long value)
putIfAbsent(double, long)
insteadnull
, else returns the current value.putIfAbsent
in interface Map<Double,Long>
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keynull
if there was no mapping for the key.
(A null
return can also indicate that the map
previously associated null
with the key,
if the implementation supports null values.)UnsupportedOperationException
- if the put
operation
is not supported by this mapClassCastException
- if the key or value is of an inappropriate type for this mapNullPointerException
- if the specified key or value is nullIllegalArgumentException
- if some property of the specified key
or value prevents it from being stored in this maplong putIfAbsent(double key, long value)
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified keyUnsupportedOperationException
- if the put
operation
is not supported by this mapIllegalArgumentException
- if some property of a specified key
or value prevents it from being stored in this map@Deprecated Long compute(Double key, @Nonnull BiFunction<? super Double,? super Long,? extends Long> remappingFunction)
compute(double, DoubleLongToLongFunction)
insteadlong compute(double key, @Nonnull DoubleLongToLongFunction remappingFunction)
If the function itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.
key
- key with which the specified value is to be associatedremappingFunction
- the function to compute a valueUnsupportedOperationException
- if the put
operation
is not supported by this map@Deprecated Long computeIfAbsent(Double key, @Nonnull Function<? super Double,? extends Long> mappingFunction)
computeIfAbsent(double, DoubleToLongFunction)
insteadcomputeIfAbsent
in interface Map<Double,Long>
long computeIfAbsent(double key, @Nonnull DoubleToLongFunction mappingFunction)
If the function itself throws an (unchecked) exception, the exception is rethrown, and no mapping is recorded.
key
- key with which the specified value is to be associatedmappingFunction
- the function to compute a valueUnsupportedOperationException
- if the put
operation
is not supported by this map@Deprecated Long computeIfPresent(Double key, @Nonnull BiFunction<? super Double,? super Long,? extends Long> remappingFunction)
computeIfPresent(double, DoubleLongToLongFunction)
insteadcomputeIfPresent
in interface Map<Double,Long>
long computeIfPresent(double key, @Nonnull DoubleLongToLongFunction remappingFunction)
If the function itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.
key
- key with which the specified value is to be associatedremappingFunction
- the function to compute a valueUnsupportedOperationException
- if the put
operation
is not supported by this map@Deprecated Long merge(Double key, Long value, @Nonnull BiFunction<? super Long,? super Long,? extends Long> remappingFunction)
merge(double, long, LongBinaryOperator)
insteadlong merge(double key, long value, @Nonnull LongBinaryOperator remappingFunction)
If the remappingFunction itself throws an (unchecked) exception, the exception is rethrown, and the current mapping is left unchanged.
key
- key with which the specified value is to be associatedvalue
- the value to use if absentremappingFunction
- the function to recompute a value if presentNullPointerException
- if the remappingFunction
is nullUnsupportedOperationException
- if the put
operation
is not supported by this maplong addValue(double key, long addition)
addition
to the value associated with the specified key,
or to the default value if this map contains no mapping for
the key, and associates the resulting value with the key.key
- the key to which value add the given valueaddition
- the value additionUnsupportedOperationException
- if the put
operation
is not supported by this maplong addValue(double key, long addition, long initialValue)
addition
to the value associated with the specified key,
or the given initialValue
if this map contains no mapping for the key, and associates
the resulting value with the key.
This version of addValue(double, long)
method is useful if you want
to accumulate values from the different initial value, than the default value of this map.
key
- the key to which value add the given valueaddition
- the value additioninitialValue
- the value to add the given value addition
to, if the map contains
no mapping for the given keyUnsupportedOperationException
- if the put
operation
is not supported by this map@Nullable @Deprecated Long replace(Double key, Long value)
replace(double, long)
insteadreplace
in interface Map<Double,Long>
key
- key with which the specified value is associatedvalue
- value to be associated with the specified keynull
if there was
no mapping for the key.UnsupportedOperationException
- if the put
operation
is not supported by this mapNullPointerException
- if the specified key or value is nullIllegalArgumentException
- if some property of the specified value
prevents it from being stored in this maplong replace(double key, long value)
key
- key with which the specified value is associatedvalue
- value to be associated with the specified keyIllegalArgumentException
- if some property of a specified key
or value prevents it from being stored in this mapUnsupportedOperationException
- if the put
operation
is not supported by this map@Deprecated boolean replace(Double key, Long oldValue, Long newValue)
replace(double, long, long)
insteadreplace
in interface Map<Double,Long>
key
- key with which the specified value is associatedoldValue
- value expected to be associated with the specified keynewValue
- value to be associated with the specified keytrue
if the value was replacedUnsupportedOperationException
- if the put
operation
is not supported by this mapNullPointerException
- if the specified key or value is nullIllegalArgumentException
- if some property of the specified value
prevents it from being stored in this mapboolean replace(double key, long oldValue, long newValue)
key
- key with which the specified value is associatedoldValue
- value expected to be associated with the specified keynewValue
- value to be associated with the specified keytrue
if the value was replacedIllegalArgumentException
- if some property of a specified key
or value prevents it from being stored in this mapUnsupportedOperationException
- if the put
operation
is not supported by this map@Deprecated void replaceAll(@Nonnull BiFunction<? super Double,? super Long,? extends Long> function)
replaceAll(DoubleLongToLongFunction)
insteadreplaceAll
in interface Map<Double,Long>
void replaceAll(@Nonnull DoubleLongToLongFunction function)
function
- the function to apply to each entryUnsupportedOperationException
- if the set
operation
is not supported by this map's entry set iteratorIllegalArgumentException
- if some property of a replacement value
prevents it from being stored in this map (optional restriction)@Nullable @Deprecated Long remove(Object key)
remove(double)
insteadlong remove(double key)
Returns the value to which this map previously associated the key, or default value if the map contained no mapping for the key.
A return value of default value does not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key to default value.
The map will not contain a mapping for the specified key once the call returns.
key
- key whose mapping is to be removed from the mapkey
, or default
value if there was
no mapping for key
UnsupportedOperationException
- if the remove
operation
is not supported by this map@Deprecated boolean remove(Object key, Object value)
remove(double, long)
insteadremove
in interface Map<Double,Long>
key
- key with which the specified value is associatedvalue
- value expected to be associated with the specified keytrue
if the value was removedNullPointerException
- if the specified key or value is nullUnsupportedOperationException
- if the remove
operation
is not supported by this mapboolean remove(double key, long value)
key
- key with which the specified value is associatedvalue
- value expected to be associated with the specified keytrue
if the value was removedUnsupportedOperationException
- if the remove
operation
is not supported by this mapboolean removeIf(@Nonnull DoubleLongPredicate filter)
filter
- a predicate which returns true
for elements to be removedtrue
if any elements were removedNullPointerException
- if the specified filter is nullUnsupportedOperationException
- if elements cannot be removed from this collection.
Implementations may throw this exception if a matching element cannot be removed
or if, in general, removal is not supported.