public interface FloatDoubleMap extends Map<Float,Double>, Container
FloatDoubleMapFactory
,
@KolobokeMap
Modifier and Type | Method and Description |
---|---|
double |
addValue(float key,
double 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. |
double |
addValue(float key,
double addition,
double 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. |
Double |
compute(Float key,
BiFunction<? super Float,? super Double,? extends Double> remappingFunction)
Deprecated.
Use specialization
compute(float, FloatDoubleToDoubleFunction) instead |
double |
compute(float key,
FloatDoubleToDoubleFunction remappingFunction)
Attempts to compute a mapping for the specified key and its current mapped value
(or default
value if there is no current mapping).
|
double |
computeIfAbsent(float key,
FloatToDoubleFunction 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
.
|
Double |
computeIfAbsent(Float key,
Function<? super Float,? extends Double> mappingFunction)
Deprecated.
Use specialization
computeIfAbsent(float, FloatToDoubleFunction) instead |
Double |
computeIfPresent(Float key,
BiFunction<? super Float,? super Double,? extends Double> remappingFunction)
Deprecated.
Use specialization
computeIfPresent(float, FloatDoubleToDoubleFunction) instead |
double |
computeIfPresent(float key,
FloatDoubleToDoubleFunction 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(float key)
Returns
true if this map contains a mapping for the specified key. |
boolean |
containsKey(Object key)
Deprecated.
Use specialization
containsKey(float) instead |
boolean |
containsValue(double value)
Returns
true if this map maps one or more keys to the specified value. |
boolean |
containsValue(Object value)
Deprecated.
Use specialization
containsValue(double) instead |
FloatDoubleCursor |
cursor()
Returns a new cursor over the entries of this map.
|
double |
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<Float,Double>> |
entrySet() |
void |
forEach(BiConsumer<? super Float,? super Double> action)
Deprecated.
Use specialization
forEach(FloatDoubleConsumer) instead |
void |
forEach(FloatDoubleConsumer 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(FloatDoublePredicate 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 . |
double |
get(float key)
Returns the value to which the specified key is mapped, or default
value if this map
contains no mapping for the key.
|
Double |
get(Object key)
Deprecated.
Use specialization
get(float) instead |
double |
getOrDefault(float key,
double defaultValue)
Returns the value to which the specified key is mapped, or
defaultValue if this map
contains no mapping for the key. |
Double |
getOrDefault(Object key,
Double defaultValue)
Deprecated.
Use specialization
getOrDefault(float, double) instead |
FloatSet |
keySet() |
Double |
merge(Float key,
Double value,
BiFunction<? super Double,? super Double,? extends Double> remappingFunction)
Deprecated.
Use specialization
merge(float, double, DoubleBinaryOperator) instead |
double |
merge(float key,
double value,
DoubleBinaryOperator 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.
|
double |
put(float key,
double value)
Associates the specified value with the specified key in this map (optional operation).
|
Double |
put(Float key,
Double value)
Deprecated.
Use specialization
put(float, double) instead |
double |
putIfAbsent(float key,
double 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.
|
Double |
putIfAbsent(Float key,
Double value)
Deprecated.
Use specialization
putIfAbsent(float, double) instead |
double |
remove(float key)
Removes the mapping for a key from this map if it is present (optional operation).
|
boolean |
remove(float key,
double value)
Removes the entry for the specified key only if it is currently mapped to the specified
value.
|
Double |
remove(Object key)
Deprecated.
Use specialization
remove(float) instead |
boolean |
remove(Object key,
Object value)
Deprecated.
Use specialization
remove(float, double) instead |
boolean |
removeIf(FloatDoublePredicate filter)
Removes all of the entries of this collection that satisfy the given predicate.
|
double |
replace(float key,
double value)
Replaces the entry for the specified key only if it is currently mapped to some value.
|
Double |
replace(Float key,
Double value)
Deprecated.
Use specialization
replace(float, double) instead |
boolean |
replace(float key,
double oldValue,
double newValue)
Replaces the entry for the specified key only if currently mapped to the specified value.
|
boolean |
replace(Float key,
Double oldValue,
Double newValue)
Deprecated.
Use specialization
replace(float, double, double) instead |
void |
replaceAll(BiFunction<? super Float,? super Double,? extends Double> function)
Deprecated.
Use specialization
replaceAll(FloatDoubleToDoubleFunction) instead |
void |
replaceAll(FloatDoubleToDoubleFunction 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.
|
DoubleCollection |
values() |
clear, ensureCapacity, isEmpty, shrink, size, sizeAsLong
double defaultValue()
null
in primitive specialization methods, when the key is absent in the map.FloatDoubleMapFactory.withDefaultValue(double)
@Deprecated boolean containsKey(Object key)
containsKey(float)
insteadcontainsKey
in interface Map<Float,Double>
boolean containsKey(float key)
true
if this map contains a mapping for the specified key.key
- the float
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(double)
insteadcontainsValue
in interface Map<Float,Double>
boolean containsValue(double 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 FloatDoubleMap
interface.value
- the double
value whose presence in this map is to be testedtrue
if this map maps one or more keys to the specified value@Nullable @Deprecated Double get(Object key)
get(float)
insteaddouble get(float key)
key
- the key whose associated value is to be returned@Deprecated Double getOrDefault(Object key, Double defaultValue)
getOrDefault(float, double)
insteadgetOrDefault
in interface Map<Float,Double>
double getOrDefault(float key, double 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 Float,? super Double> action)
forEach(FloatDoubleConsumer)
insteadvoid forEach(@Nonnull FloatDoubleConsumer 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 FloatDoublePredicate 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 FloatDoubleCursor cursor()
Basic cursor usage idiom is:
for (FloatDoubleCursor cur = map.cursor(); cur.moveNext();) {
// Work with cur.key() and cur.value()
// Call cur.remove() to remove the current entry
}
@Deprecated Double put(Float key, Double value)
put(float, double)
insteaddouble put(float key, double 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 Double putIfAbsent(Float key, Double value)
putIfAbsent(float, double)
insteadnull
, else returns the current value.putIfAbsent
in interface Map<Float,Double>
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 mapdouble putIfAbsent(float key, double 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 Double compute(Float key, @Nonnull BiFunction<? super Float,? super Double,? extends Double> remappingFunction)
compute(float, FloatDoubleToDoubleFunction)
insteaddouble compute(float key, @Nonnull FloatDoubleToDoubleFunction 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 Double computeIfAbsent(Float key, @Nonnull Function<? super Float,? extends Double> mappingFunction)
computeIfAbsent(float, FloatToDoubleFunction)
insteadcomputeIfAbsent
in interface Map<Float,Double>
double computeIfAbsent(float key, @Nonnull FloatToDoubleFunction 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 Double computeIfPresent(Float key, @Nonnull BiFunction<? super Float,? super Double,? extends Double> remappingFunction)
computeIfPresent(float, FloatDoubleToDoubleFunction)
insteadcomputeIfPresent
in interface Map<Float,Double>
double computeIfPresent(float key, @Nonnull FloatDoubleToDoubleFunction 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 Double merge(Float key, Double value, @Nonnull BiFunction<? super Double,? super Double,? extends Double> remappingFunction)
merge(float, double, DoubleBinaryOperator)
insteaddouble merge(float key, double value, @Nonnull DoubleBinaryOperator 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 mapdouble addValue(float key, double 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 mapdouble addValue(float key, double addition, double 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(float, double)
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 Double replace(Float key, Double value)
replace(float, double)
insteadreplace
in interface Map<Float,Double>
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 mapdouble replace(float key, double 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(Float key, Double oldValue, Double newValue)
replace(float, double, double)
insteadreplace
in interface Map<Float,Double>
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(float key, double oldValue, double 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 Float,? super Double,? extends Double> function)
replaceAll(FloatDoubleToDoubleFunction)
insteadreplaceAll
in interface Map<Float,Double>
void replaceAll(@Nonnull FloatDoubleToDoubleFunction 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 Double remove(Object key)
remove(float)
insteaddouble remove(float 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(float, double)
insteadremove
in interface Map<Float,Double>
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(float key, double 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 FloatDoublePredicate 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.