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