public interface MutableShortByteMap extends ShortByteMap, MutableByteValuesMap
Modifier and Type | Method and Description |
---|---|
byte |
addToValue(short key,
byte toBeAdded) |
MutableShortByteMap |
asSynchronized() |
MutableShortByteMap |
asUnmodifiable() |
byte |
getIfAbsentPut(short key,
byte value) |
byte |
getIfAbsentPut(short key,
ByteFunction0 function) |
<P> byte |
getIfAbsentPutWith(short key,
ByteFunction<? super P> function,
P parameter) |
byte |
getIfAbsentPutWithKey(short key,
ShortToByteFunction function) |
void |
put(short key,
byte value) |
void |
putAll(ShortByteMap map) |
MutableShortByteMap |
reject(ShortBytePredicate predicate) |
void |
remove(short key) |
void |
removeKey(short key) |
byte |
removeKeyIfAbsent(short key,
byte value) |
MutableShortByteMap |
select(ShortBytePredicate predicate) |
byte |
updateValue(short key,
byte initialValueIfAbsent,
ByteToByteFunction function) |
MutableShortByteMap |
withKeyValue(short key,
byte value) |
MutableShortByteMap |
withoutAllKeys(ShortIterable keys) |
MutableShortByteMap |
withoutKey(short 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(short key, byte value)
void putAll(ShortByteMap map)
void removeKey(short key)
void remove(short key)
byte removeKeyIfAbsent(short key, byte value)
byte getIfAbsentPut(short key, byte value)
byte getIfAbsentPut(short key, ByteFunction0 function)
byte getIfAbsentPutWithKey(short key, ShortToByteFunction function)
<P> byte getIfAbsentPutWith(short key, ByteFunction<? super P> function, P parameter)
byte updateValue(short key, byte initialValueIfAbsent, ByteToByteFunction function)
MutableShortByteMap select(ShortBytePredicate predicate)
select
in interface ShortByteMap
MutableShortByteMap reject(ShortBytePredicate predicate)
reject
in interface ShortByteMap
MutableShortByteMap withKeyValue(short key, byte value)
MutableShortByteMap withoutKey(short key)
MutableShortByteMap withoutAllKeys(ShortIterable keys)
MutableShortByteMap asUnmodifiable()
MutableShortByteMap asSynchronized()
byte addToValue(short key, byte toBeAdded)
Copyright © 2004–2016. All rights reserved.