CharIterable
, CharValuesMap
, FloatCharMap
, MutableCharValuesMap
, PrimitiveIterable
FloatCharHashMap
, SynchronizedFloatCharMap
, UnmodifiableFloatCharMap
public interface MutableFloatCharMap extends FloatCharMap, MutableCharValuesMap
Modifier and Type | Method | Description |
---|---|---|
char |
addToValue(float key,
char toBeAdded) |
|
MutableFloatCharMap |
asSynchronized() |
|
MutableFloatCharMap |
asUnmodifiable() |
|
MutableCharFloatMap |
flipUniqueValues() |
Return the CharFloatMap that is obtained by flipping the direction of this map and making the associations
from value to key.
|
char |
getIfAbsentPut(float key,
char value) |
|
char |
getIfAbsentPut(float key,
CharFunction0 function) |
|
<P> char |
getIfAbsentPutWith(float key,
CharFunction<? super P> function,
P parameter) |
|
char |
getIfAbsentPutWithKey(float key,
FloatToCharFunction function) |
|
void |
put(float key,
char value) |
|
void |
putAll(FloatCharMap map) |
|
MutableFloatCharMap |
reject(FloatCharPredicate predicate) |
|
void |
remove(float key) |
|
void |
removeKey(float key) |
|
char |
removeKeyIfAbsent(float key,
char value) |
|
MutableFloatCharMap |
select(FloatCharPredicate predicate) |
|
char |
updateValue(float key,
char initialValueIfAbsent,
CharToCharFunction function) |
|
MutableFloatCharMap |
withKeyValue(float key,
char value) |
|
MutableFloatCharMap |
withoutAllKeys(FloatIterable keys) |
|
MutableFloatCharMap |
withoutKey(float key) |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
containsValue, forEachValue, tap, values
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
charIterator, clear, collect, reject, select
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(float key, char value)
void putAll(FloatCharMap map)
void removeKey(float key)
void remove(float key)
char removeKeyIfAbsent(float key, char value)
char getIfAbsentPut(float key, char value)
char getIfAbsentPut(float key, CharFunction0 function)
char getIfAbsentPutWithKey(float key, FloatToCharFunction function)
<P> char getIfAbsentPutWith(float key, CharFunction<? super P> function, P parameter)
char updateValue(float key, char initialValueIfAbsent, CharToCharFunction function)
MutableCharFloatMap flipUniqueValues()
FloatCharMap
flipUniqueValues
in interface FloatCharMap
MutableFloatCharMap select(FloatCharPredicate predicate)
select
in interface FloatCharMap
MutableFloatCharMap reject(FloatCharPredicate predicate)
reject
in interface FloatCharMap
MutableFloatCharMap withKeyValue(float key, char value)
MutableFloatCharMap withoutKey(float key)
MutableFloatCharMap withoutAllKeys(FloatIterable keys)
MutableFloatCharMap asUnmodifiable()
MutableFloatCharMap asSynchronized()
char addToValue(float key, char toBeAdded)
Copyright © 2004–2017. All rights reserved.