public interface MutableIntShortMap extends IntShortMap, MutableShortValuesMap
Modifier and Type | Method and Description |
---|---|
short |
addToValue(int key,
short toBeAdded) |
MutableIntShortMap |
asSynchronized() |
MutableIntShortMap |
asUnmodifiable() |
short |
getIfAbsentPut(int key,
short value) |
short |
getIfAbsentPut(int key,
ShortFunction0 function) |
<P> short |
getIfAbsentPutWith(int key,
ShortFunction<? super P> function,
P parameter) |
short |
getIfAbsentPutWithKey(int key,
IntToShortFunction function) |
void |
put(int key,
short value) |
void |
putAll(IntShortMap map) |
MutableIntShortMap |
reject(IntShortPredicate predicate) |
void |
remove(int key) |
void |
removeKey(int key) |
short |
removeKeyIfAbsent(int key,
short value) |
MutableIntShortMap |
select(IntShortPredicate predicate) |
short |
updateValue(int key,
short initialValueIfAbsent,
ShortToShortFunction function) |
MutableIntShortMap |
withKeyValue(int key,
short value) |
MutableIntShortMap |
withoutAllKeys(IntIterable keys) |
MutableIntShortMap |
withoutKey(int 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(int key, short value)
void putAll(IntShortMap map)
void removeKey(int key)
void remove(int key)
short removeKeyIfAbsent(int key, short value)
short getIfAbsentPut(int key, short value)
short getIfAbsentPut(int key, ShortFunction0 function)
short getIfAbsentPutWithKey(int key, IntToShortFunction function)
<P> short getIfAbsentPutWith(int key, ShortFunction<? super P> function, P parameter)
short updateValue(int key, short initialValueIfAbsent, ShortToShortFunction function)
MutableIntShortMap select(IntShortPredicate predicate)
select
in interface IntShortMap
MutableIntShortMap reject(IntShortPredicate predicate)
reject
in interface IntShortMap
MutableIntShortMap withKeyValue(int key, short value)
MutableIntShortMap withoutKey(int key)
MutableIntShortMap withoutAllKeys(IntIterable keys)
MutableIntShortMap asUnmodifiable()
MutableIntShortMap asSynchronized()
short addToValue(int key, short toBeAdded)
Copyright © 2004–2016. All rights reserved.