public interface MutableShortCharMap extends ShortCharMap, MutableCharValuesMap
Modifier and Type | Method and Description |
---|---|
char |
addToValue(short key,
char toBeAdded) |
MutableShortCharMap |
asSynchronized() |
MutableShortCharMap |
asUnmodifiable() |
char |
getIfAbsentPut(short key,
char value) |
char |
getIfAbsentPut(short key,
CharFunction0 function) |
<P> char |
getIfAbsentPutWith(short key,
CharFunction<? super P> function,
P parameter) |
char |
getIfAbsentPutWithKey(short key,
ShortToCharFunction function) |
void |
put(short key,
char value) |
void |
putAll(ShortCharMap map) |
MutableShortCharMap |
reject(ShortCharPredicate predicate) |
void |
remove(short key) |
void |
removeKey(short key) |
char |
removeKeyIfAbsent(short key,
char value) |
MutableShortCharMap |
select(ShortCharPredicate predicate) |
char |
updateValue(short key,
char initialValueIfAbsent,
CharToCharFunction function) |
MutableShortCharMap |
withKeyValue(short key,
char value) |
MutableShortCharMap |
withoutAllKeys(ShortIterable keys) |
MutableShortCharMap |
withoutKey(short 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, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(short key, char value)
void putAll(ShortCharMap map)
void removeKey(short key)
void remove(short key)
char removeKeyIfAbsent(short key, char value)
char getIfAbsentPut(short key, char value)
char getIfAbsentPut(short key, CharFunction0 function)
char getIfAbsentPutWithKey(short key, ShortToCharFunction function)
<P> char getIfAbsentPutWith(short key, CharFunction<? super P> function, P parameter)
char updateValue(short key, char initialValueIfAbsent, CharToCharFunction function)
MutableShortCharMap select(ShortCharPredicate predicate)
select
in interface ShortCharMap
MutableShortCharMap reject(ShortCharPredicate predicate)
reject
in interface ShortCharMap
MutableShortCharMap withKeyValue(short key, char value)
MutableShortCharMap withoutKey(short key)
MutableShortCharMap withoutAllKeys(ShortIterable keys)
MutableShortCharMap asUnmodifiable()
MutableShortCharMap asSynchronized()
char addToValue(short key, char toBeAdded)
Copyright © 2004–2016. All rights reserved.