public interface MutableCharShortMap extends CharShortMap, MutableShortValuesMap
Modifier and Type | Method and Description |
---|---|
short |
addToValue(char key,
short toBeAdded) |
MutableCharShortMap |
asSynchronized() |
MutableCharShortMap |
asUnmodifiable() |
short |
getIfAbsentPut(char key,
short value) |
short |
getIfAbsentPut(char key,
ShortFunction0 function) |
<P> short |
getIfAbsentPutWith(char key,
ShortFunction<? super P> function,
P parameter) |
short |
getIfAbsentPutWithKey(char key,
CharToShortFunction function) |
void |
put(char key,
short value) |
void |
putAll(CharShortMap map) |
MutableCharShortMap |
reject(CharShortPredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
short |
removeKeyIfAbsent(char key,
short value) |
MutableCharShortMap |
select(CharShortPredicate predicate) |
short |
updateValue(char key,
short initialValueIfAbsent,
ShortToShortFunction function) |
MutableCharShortMap |
withKeyValue(char key,
short value) |
MutableCharShortMap |
withoutAllKeys(CharIterable keys) |
MutableCharShortMap |
withoutKey(char key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, reject, select, shortIterator
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, short value)
void putAll(CharShortMap map)
void removeKey(char key)
void remove(char key)
short removeKeyIfAbsent(char key, short value)
short getIfAbsentPut(char key, short value)
short getIfAbsentPut(char key, ShortFunction0 function)
short getIfAbsentPutWithKey(char key, CharToShortFunction function)
<P> short getIfAbsentPutWith(char key, ShortFunction<? super P> function, P parameter)
short updateValue(char key, short initialValueIfAbsent, ShortToShortFunction function)
MutableCharShortMap select(CharShortPredicate predicate)
select
in interface CharShortMap
MutableCharShortMap reject(CharShortPredicate predicate)
reject
in interface CharShortMap
MutableCharShortMap withKeyValue(char key, short value)
MutableCharShortMap withoutKey(char key)
MutableCharShortMap withoutAllKeys(CharIterable keys)
MutableCharShortMap asUnmodifiable()
MutableCharShortMap asSynchronized()
short addToValue(char key, short toBeAdded)
Copyright © 2004–2016. All rights reserved.