public interface MutableShortLongMap extends ShortLongMap, MutableLongValuesMap
Modifier and Type | Method and Description |
---|---|
long |
addToValue(short key,
long toBeAdded) |
MutableShortLongMap |
asSynchronized() |
MutableShortLongMap |
asUnmodifiable() |
long |
getIfAbsentPut(short key,
long value) |
long |
getIfAbsentPut(short key,
LongFunction0 function) |
<P> long |
getIfAbsentPutWith(short key,
LongFunction<? super P> function,
P parameter) |
long |
getIfAbsentPutWithKey(short key,
ShortToLongFunction function) |
void |
put(short key,
long value) |
void |
putAll(ShortLongMap map) |
MutableShortLongMap |
reject(ShortLongPredicate predicate) |
void |
remove(short key) |
void |
removeKey(short key) |
long |
removeKeyIfAbsent(short key,
long value) |
MutableShortLongMap |
select(ShortLongPredicate predicate) |
long |
updateValue(short key,
long initialValueIfAbsent,
LongToLongFunction function) |
MutableShortLongMap |
withKeyValue(short key,
long value) |
MutableShortLongMap |
withoutAllKeys(ShortIterable keys) |
MutableShortLongMap |
withoutKey(short key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, longIterator, 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, long value)
void putAll(ShortLongMap map)
void removeKey(short key)
void remove(short key)
long removeKeyIfAbsent(short key, long value)
long getIfAbsentPut(short key, long value)
long getIfAbsentPut(short key, LongFunction0 function)
long getIfAbsentPutWithKey(short key, ShortToLongFunction function)
<P> long getIfAbsentPutWith(short key, LongFunction<? super P> function, P parameter)
long updateValue(short key, long initialValueIfAbsent, LongToLongFunction function)
MutableShortLongMap select(ShortLongPredicate predicate)
select
in interface ShortLongMap
MutableShortLongMap reject(ShortLongPredicate predicate)
reject
in interface ShortLongMap
MutableShortLongMap withKeyValue(short key, long value)
MutableShortLongMap withoutKey(short key)
MutableShortLongMap withoutAllKeys(ShortIterable keys)
MutableShortLongMap asUnmodifiable()
MutableShortLongMap asSynchronized()
long addToValue(short key, long toBeAdded)
Copyright © 2004–2016. All rights reserved.