public interface MutableCharLongMap extends CharLongMap, MutableLongValuesMap
Modifier and Type | Method and Description |
---|---|
long |
addToValue(char key,
long toBeAdded) |
MutableCharLongMap |
asSynchronized() |
MutableCharLongMap |
asUnmodifiable() |
long |
getIfAbsentPut(char key,
long value) |
long |
getIfAbsentPut(char key,
LongFunction0 function) |
<P> long |
getIfAbsentPutWith(char key,
LongFunction<? super P> function,
P parameter) |
long |
getIfAbsentPutWithKey(char key,
CharToLongFunction function) |
void |
put(char key,
long value) |
void |
putAll(CharLongMap map) |
MutableCharLongMap |
reject(CharLongPredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
long |
removeKeyIfAbsent(char key,
long value) |
MutableCharLongMap |
select(CharLongPredicate predicate) |
long |
updateValue(char key,
long initialValueIfAbsent,
LongToLongFunction function) |
MutableCharLongMap |
withKeyValue(char key,
long value) |
MutableCharLongMap |
withoutAllKeys(CharIterable keys) |
MutableCharLongMap |
withoutKey(char 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(char key, long value)
void putAll(CharLongMap map)
void removeKey(char key)
void remove(char key)
long removeKeyIfAbsent(char key, long value)
long getIfAbsentPut(char key, long value)
long getIfAbsentPut(char key, LongFunction0 function)
long getIfAbsentPutWithKey(char key, CharToLongFunction function)
<P> long getIfAbsentPutWith(char key, LongFunction<? super P> function, P parameter)
long updateValue(char key, long initialValueIfAbsent, LongToLongFunction function)
MutableCharLongMap select(CharLongPredicate predicate)
select
in interface CharLongMap
MutableCharLongMap reject(CharLongPredicate predicate)
reject
in interface CharLongMap
MutableCharLongMap withKeyValue(char key, long value)
MutableCharLongMap withoutKey(char key)
MutableCharLongMap withoutAllKeys(CharIterable keys)
MutableCharLongMap asUnmodifiable()
MutableCharLongMap asSynchronized()
long addToValue(char key, long toBeAdded)
Copyright © 2004–2016. All rights reserved.