CharIterable
, CharValuesMap
, LongCharMap
, MutableCharValuesMap
, PrimitiveIterable
LongCharHashMap
, SynchronizedLongCharMap
, UnmodifiableLongCharMap
public interface MutableLongCharMap extends LongCharMap, MutableCharValuesMap
Modifier and Type | Method | Description |
---|---|---|
char |
addToValue(long key,
char toBeAdded) |
|
MutableLongCharMap |
asSynchronized() |
|
MutableLongCharMap |
asUnmodifiable() |
|
char |
getIfAbsentPut(long key,
char value) |
|
char |
getIfAbsentPut(long key,
CharFunction0 function) |
|
<P> char |
getIfAbsentPutWith(long key,
CharFunction<? super P> function,
P parameter) |
|
char |
getIfAbsentPutWithKey(long key,
LongToCharFunction function) |
|
void |
put(long key,
char value) |
|
void |
putAll(LongCharMap map) |
|
MutableLongCharMap |
reject(LongCharPredicate predicate) |
|
void |
remove(long key) |
|
void |
removeKey(long key) |
|
char |
removeKeyIfAbsent(long key,
char value) |
|
MutableLongCharMap |
select(LongCharPredicate predicate) |
|
char |
updateValue(long key,
char initialValueIfAbsent,
CharToCharFunction function) |
|
MutableLongCharMap |
withKeyValue(long key,
char value) |
|
MutableLongCharMap |
withoutAllKeys(LongIterable keys) |
|
MutableLongCharMap |
withoutKey(long key) |
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
containsValue, forEachValue, values
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
charIterator, clear, collect, reject, select
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(long key, char value)
void putAll(LongCharMap map)
void removeKey(long key)
void remove(long key)
char removeKeyIfAbsent(long key, char value)
char getIfAbsentPut(long key, char value)
char getIfAbsentPut(long key, CharFunction0 function)
char getIfAbsentPutWithKey(long key, LongToCharFunction function)
<P> char getIfAbsentPutWith(long key, CharFunction<? super P> function, P parameter)
char updateValue(long key, char initialValueIfAbsent, CharToCharFunction function)
MutableLongCharMap select(LongCharPredicate predicate)
select
in interface LongCharMap
MutableLongCharMap reject(LongCharPredicate predicate)
reject
in interface LongCharMap
MutableLongCharMap withKeyValue(long key, char value)
MutableLongCharMap withoutKey(long key)
MutableLongCharMap withoutAllKeys(LongIterable keys)
MutableLongCharMap asUnmodifiable()
MutableLongCharMap asSynchronized()
char addToValue(long key, char toBeAdded)
Copyright © 2004–2017. All rights reserved.