CharIntMap
, IntIterable
, IntValuesMap
, MutableIntValuesMap
, PrimitiveIterable
CharIntHashMap
, SynchronizedCharIntMap
, UnmodifiableCharIntMap
public interface MutableCharIntMap extends CharIntMap, MutableIntValuesMap
Modifier and Type | Method | Description |
---|---|---|
int |
addToValue(char key,
int toBeAdded) |
|
MutableCharIntMap |
asSynchronized() |
|
MutableCharIntMap |
asUnmodifiable() |
|
int |
getIfAbsentPut(char key,
int value) |
|
int |
getIfAbsentPut(char key,
IntFunction0 function) |
|
<P> int |
getIfAbsentPutWith(char key,
IntFunction<? super P> function,
P parameter) |
|
int |
getIfAbsentPutWithKey(char key,
CharToIntFunction function) |
|
void |
put(char key,
int value) |
|
void |
putAll(CharIntMap map) |
|
MutableCharIntMap |
reject(CharIntPredicate predicate) |
|
void |
remove(char key) |
|
void |
removeKey(char key) |
|
int |
removeKeyIfAbsent(char key,
int value) |
|
MutableCharIntMap |
select(CharIntPredicate predicate) |
|
int |
updateValue(char key,
int initialValueIfAbsent,
IntToIntFunction function) |
|
MutableCharIntMap |
withKeyValue(char key,
int value) |
|
MutableCharIntMap |
withoutAllKeys(CharIterable keys) |
|
MutableCharIntMap |
withoutKey(char key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
containsValue, forEachValue, values
clear, collect, intIterator, reject, select
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(char key, int value)
void putAll(CharIntMap map)
void removeKey(char key)
void remove(char key)
int removeKeyIfAbsent(char key, int value)
int getIfAbsentPut(char key, int value)
int getIfAbsentPut(char key, IntFunction0 function)
int getIfAbsentPutWithKey(char key, CharToIntFunction function)
<P> int getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)
int updateValue(char key, int initialValueIfAbsent, IntToIntFunction function)
MutableCharIntMap select(CharIntPredicate predicate)
select
in interface CharIntMap
MutableCharIntMap reject(CharIntPredicate predicate)
reject
in interface CharIntMap
MutableCharIntMap withKeyValue(char key, int value)
MutableCharIntMap withoutKey(char key)
MutableCharIntMap withoutAllKeys(CharIterable keys)
MutableCharIntMap asUnmodifiable()
MutableCharIntMap asSynchronized()
int addToValue(char key, int toBeAdded)
Copyright © 2004–2017. All rights reserved.