public interface MutableCharFloatMap extends CharFloatMap, MutableFloatValuesMap
Modifier and Type | Method and Description |
---|---|
float |
addToValue(char key,
float toBeAdded) |
MutableCharFloatMap |
asSynchronized() |
MutableCharFloatMap |
asUnmodifiable() |
float |
getIfAbsentPut(char key,
float value) |
float |
getIfAbsentPut(char key,
FloatFunction0 function) |
<P> float |
getIfAbsentPutWith(char key,
FloatFunction<? super P> function,
P parameter) |
float |
getIfAbsentPutWithKey(char key,
CharToFloatFunction function) |
void |
put(char key,
float value) |
void |
putAll(CharFloatMap map) |
MutableCharFloatMap |
reject(CharFloatPredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
float |
removeKeyIfAbsent(char key,
float value) |
MutableCharFloatMap |
select(CharFloatPredicate predicate) |
float |
updateValue(char key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
MutableCharFloatMap |
withKeyValue(char key,
float value) |
MutableCharFloatMap |
withoutAllKeys(CharIterable keys) |
MutableCharFloatMap |
withoutKey(char 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(char key, float value)
void putAll(CharFloatMap map)
void removeKey(char key)
void remove(char key)
float removeKeyIfAbsent(char key, float value)
float getIfAbsentPut(char key, float value)
float getIfAbsentPut(char key, FloatFunction0 function)
float getIfAbsentPutWithKey(char key, CharToFloatFunction function)
<P> float getIfAbsentPutWith(char key, FloatFunction<? super P> function, P parameter)
float updateValue(char key, float initialValueIfAbsent, FloatToFloatFunction function)
MutableCharFloatMap select(CharFloatPredicate predicate)
select
in interface CharFloatMap
MutableCharFloatMap reject(CharFloatPredicate predicate)
reject
in interface CharFloatMap
MutableCharFloatMap withKeyValue(char key, float value)
MutableCharFloatMap withoutKey(char key)
MutableCharFloatMap withoutAllKeys(CharIterable keys)
MutableCharFloatMap asUnmodifiable()
MutableCharFloatMap asSynchronized()
float addToValue(char key, float toBeAdded)
Copyright © 2004–2016. All rights reserved.