public interface MutableByteShortMap extends ByteShortMap, MutableShortValuesMap
Modifier and Type | Method and Description |
---|---|
short |
addToValue(byte key,
short toBeAdded) |
MutableByteShortMap |
asSynchronized() |
MutableByteShortMap |
asUnmodifiable() |
short |
getIfAbsentPut(byte key,
short value) |
short |
getIfAbsentPut(byte key,
ShortFunction0 function) |
<P> short |
getIfAbsentPutWith(byte key,
ShortFunction<? super P> function,
P parameter) |
short |
getIfAbsentPutWithKey(byte key,
ByteToShortFunction function) |
void |
put(byte key,
short value) |
void |
putAll(ByteShortMap map) |
MutableByteShortMap |
reject(ByteShortPredicate predicate) |
void |
remove(byte key) |
void |
removeKey(byte key) |
short |
removeKeyIfAbsent(byte key,
short value) |
MutableByteShortMap |
select(ByteShortPredicate predicate) |
short |
updateValue(byte key,
short initialValueIfAbsent,
ShortToShortFunction function) |
MutableByteShortMap |
withKeyValue(byte key,
short value) |
MutableByteShortMap |
withoutAllKeys(ByteIterable keys) |
MutableByteShortMap |
withoutKey(byte key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, reject, select, shortIterator
containsValue, forEachValue, values
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(byte key, short value)
void putAll(ByteShortMap map)
void removeKey(byte key)
void remove(byte key)
short removeKeyIfAbsent(byte key, short value)
short getIfAbsentPut(byte key, short value)
short getIfAbsentPut(byte key, ShortFunction0 function)
short getIfAbsentPutWithKey(byte key, ByteToShortFunction function)
<P> short getIfAbsentPutWith(byte key, ShortFunction<? super P> function, P parameter)
short updateValue(byte key, short initialValueIfAbsent, ShortToShortFunction function)
MutableByteShortMap select(ByteShortPredicate predicate)
select
in interface ByteShortMap
MutableByteShortMap reject(ByteShortPredicate predicate)
reject
in interface ByteShortMap
MutableByteShortMap withKeyValue(byte key, short value)
MutableByteShortMap withoutKey(byte key)
MutableByteShortMap withoutAllKeys(ByteIterable keys)
MutableByteShortMap asUnmodifiable()
MutableByteShortMap asSynchronized()
short addToValue(byte key, short toBeAdded)
Copyright © 2004–2016. All rights reserved.