public interface MutableShortFloatMap extends ShortFloatMap, MutableFloatValuesMap
Modifier and Type | Method and Description |
---|---|
float |
addToValue(short key,
float toBeAdded) |
MutableShortFloatMap |
asSynchronized() |
MutableShortFloatMap |
asUnmodifiable() |
float |
getIfAbsentPut(short key,
float value) |
float |
getIfAbsentPut(short key,
FloatFunction0 function) |
<P> float |
getIfAbsentPutWith(short key,
FloatFunction<? super P> function,
P parameter) |
float |
getIfAbsentPutWithKey(short key,
ShortToFloatFunction function) |
void |
put(short key,
float value) |
void |
putAll(ShortFloatMap map) |
MutableShortFloatMap |
reject(ShortFloatPredicate predicate) |
void |
remove(short key) |
void |
removeKey(short key) |
float |
removeKeyIfAbsent(short key,
float value) |
MutableShortFloatMap |
select(ShortFloatPredicate predicate) |
float |
updateValue(short key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
MutableShortFloatMap |
withKeyValue(short key,
float value) |
MutableShortFloatMap |
withoutAllKeys(ShortIterable keys) |
MutableShortFloatMap |
withoutKey(short key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, floatIterator, reject, select
containsValue, forEachValue, values
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(short key, float value)
void putAll(ShortFloatMap map)
void removeKey(short key)
void remove(short key)
float removeKeyIfAbsent(short key, float value)
float getIfAbsentPut(short key, float value)
float getIfAbsentPut(short key, FloatFunction0 function)
float getIfAbsentPutWithKey(short key, ShortToFloatFunction function)
<P> float getIfAbsentPutWith(short key, FloatFunction<? super P> function, P parameter)
float updateValue(short key, float initialValueIfAbsent, FloatToFloatFunction function)
MutableShortFloatMap select(ShortFloatPredicate predicate)
select
in interface ShortFloatMap
MutableShortFloatMap reject(ShortFloatPredicate predicate)
reject
in interface ShortFloatMap
MutableShortFloatMap withKeyValue(short key, float value)
MutableShortFloatMap withoutKey(short key)
MutableShortFloatMap withoutAllKeys(ShortIterable keys)
MutableShortFloatMap asUnmodifiable()
MutableShortFloatMap asSynchronized()
float addToValue(short key, float toBeAdded)
Copyright © 2004–2016. All rights reserved.