ByteIterable
, ByteValuesMap
, MutableByteValuesMap
, PrimitiveIterable
, ShortByteMap
ShortByteHashMap
, SynchronizedShortByteMap
, UnmodifiableShortByteMap
public interface MutableShortByteMap extends ShortByteMap, MutableByteValuesMap
Modifier and Type | Method | 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) |
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
byteIterator, clear, collect, reject, select
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
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–2017. All rights reserved.