public interface MutableShortIntMap extends ShortIntMap, MutableIntValuesMap
| Modifier and Type | Method and Description |
|---|---|
int |
addToValue(short key,
int toBeAdded) |
MutableShortIntMap |
asSynchronized() |
MutableShortIntMap |
asUnmodifiable() |
int |
getIfAbsentPut(short key,
int value) |
int |
getIfAbsentPut(short key,
IntFunction0 function) |
<P> int |
getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter) |
int |
getIfAbsentPutWithKey(short key,
ShortToIntFunction function) |
void |
put(short key,
int value) |
void |
putAll(ShortIntMap map) |
MutableShortIntMap |
reject(ShortIntPredicate predicate) |
void |
remove(short key) |
void |
removeKey(short key) |
int |
removeKeyIfAbsent(short key,
int value) |
MutableShortIntMap |
select(ShortIntPredicate predicate) |
int |
updateValue(short key,
int initialValueIfAbsent,
IntToIntFunction function) |
MutableShortIntMap |
withKeyValue(short key,
int value) |
MutableShortIntMap |
withoutAllKeys(ShortIterable keys) |
MutableShortIntMap |
withoutKey(short key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toStringclear, collect, intIterator, reject, selectcontainsValue, forEachValue, valuesallSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizevoid put(short key,
int value)
void putAll(ShortIntMap map)
void removeKey(short key)
void remove(short key)
int removeKeyIfAbsent(short key,
int value)
int getIfAbsentPut(short key,
int value)
int getIfAbsentPut(short key,
IntFunction0 function)
int getIfAbsentPutWithKey(short key,
ShortToIntFunction function)
<P> int getIfAbsentPutWith(short key,
IntFunction<? super P> function,
P parameter)
int updateValue(short key,
int initialValueIfAbsent,
IntToIntFunction function)
MutableShortIntMap select(ShortIntPredicate predicate)
select in interface ShortIntMapMutableShortIntMap reject(ShortIntPredicate predicate)
reject in interface ShortIntMapMutableShortIntMap withKeyValue(short key, int value)
MutableShortIntMap withoutKey(short key)
MutableShortIntMap withoutAllKeys(ShortIterable keys)
MutableShortIntMap asUnmodifiable()
MutableShortIntMap asSynchronized()
int addToValue(short key,
int toBeAdded)
Copyright © 2004–2016. All rights reserved.