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