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