public interface MutableIntIntMap extends IntIntMap, MutableIntValuesMap
Modifier and Type | Method and Description |
---|---|
int |
addToValue(int key,
int toBeAdded) |
MutableIntIntMap |
asSynchronized() |
MutableIntIntMap |
asUnmodifiable() |
int |
getIfAbsentPut(int key,
int value) |
int |
getIfAbsentPut(int key,
IntFunction0 function) |
<P> int |
getIfAbsentPutWith(int key,
IntFunction<? super P> function,
P parameter) |
int |
getIfAbsentPutWithKey(int key,
IntToIntFunction function) |
void |
put(int key,
int value) |
void |
putAll(IntIntMap map) |
MutableIntIntMap |
reject(IntIntPredicate predicate) |
void |
remove(int key) |
void |
removeKey(int key) |
int |
removeKeyIfAbsent(int key,
int value) |
MutableIntIntMap |
select(IntIntPredicate predicate) |
int |
updateValue(int key,
int initialValueIfAbsent,
IntToIntFunction function) |
MutableIntIntMap |
withKeyValue(int key,
int value) |
MutableIntIntMap |
withoutAllKeys(IntIterable keys) |
MutableIntIntMap |
withoutKey(int key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, intIterator, 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(int key, int value)
void putAll(IntIntMap map)
void removeKey(int key)
void remove(int key)
int removeKeyIfAbsent(int key, int value)
int getIfAbsentPut(int key, int value)
int getIfAbsentPut(int key, IntFunction0 function)
int getIfAbsentPutWithKey(int key, IntToIntFunction function)
<P> int getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)
int updateValue(int key, int initialValueIfAbsent, IntToIntFunction function)
MutableIntIntMap select(IntIntPredicate predicate)
MutableIntIntMap reject(IntIntPredicate predicate)
MutableIntIntMap withKeyValue(int key, int value)
MutableIntIntMap withoutKey(int key)
MutableIntIntMap withoutAllKeys(IntIterable keys)
MutableIntIntMap asUnmodifiable()
MutableIntIntMap asSynchronized()
int addToValue(int key, int toBeAdded)
Copyright © 2004–2016. All rights reserved.