public interface MutableCharByteMap extends CharByteMap, MutableByteValuesMap
Modifier and Type | Method and Description |
---|---|
byte |
addToValue(char key,
byte toBeAdded) |
MutableCharByteMap |
asSynchronized() |
MutableCharByteMap |
asUnmodifiable() |
byte |
getIfAbsentPut(char key,
byte value) |
byte |
getIfAbsentPut(char key,
ByteFunction0 function) |
<P> byte |
getIfAbsentPutWith(char key,
ByteFunction<? super P> function,
P parameter) |
byte |
getIfAbsentPutWithKey(char key,
CharToByteFunction function) |
void |
put(char key,
byte value) |
void |
putAll(CharByteMap map) |
MutableCharByteMap |
reject(CharBytePredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
byte |
removeKeyIfAbsent(char key,
byte value) |
MutableCharByteMap |
select(CharBytePredicate predicate) |
byte |
updateValue(char key,
byte initialValueIfAbsent,
ByteToByteFunction function) |
MutableCharByteMap |
withKeyValue(char key,
byte value) |
MutableCharByteMap |
withoutAllKeys(CharIterable keys) |
MutableCharByteMap |
withoutKey(char key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
byteIterator, clear, collect, 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, byte value)
void putAll(CharByteMap map)
void removeKey(char key)
void remove(char key)
byte removeKeyIfAbsent(char key, byte value)
byte getIfAbsentPut(char key, byte value)
byte getIfAbsentPut(char key, ByteFunction0 function)
byte getIfAbsentPutWithKey(char key, CharToByteFunction function)
<P> byte getIfAbsentPutWith(char key, ByteFunction<? super P> function, P parameter)
byte updateValue(char key, byte initialValueIfAbsent, ByteToByteFunction function)
MutableCharByteMap select(CharBytePredicate predicate)
select
in interface CharByteMap
MutableCharByteMap reject(CharBytePredicate predicate)
reject
in interface CharByteMap
MutableCharByteMap withKeyValue(char key, byte value)
MutableCharByteMap withoutKey(char key)
MutableCharByteMap withoutAllKeys(CharIterable keys)
MutableCharByteMap asUnmodifiable()
MutableCharByteMap asSynchronized()
byte addToValue(char key, byte toBeAdded)
Copyright © 2004–2016. All rights reserved.