ByteIterable
, ByteValuesMap
, FloatByteMap
, MutableByteValuesMap
, PrimitiveIterable
FloatByteHashMap
, SynchronizedFloatByteMap
, UnmodifiableFloatByteMap
public interface MutableFloatByteMap extends FloatByteMap, MutableByteValuesMap
Modifier and Type | Method | Description |
---|---|---|
byte |
addToValue(float key,
byte toBeAdded) |
|
MutableFloatByteMap |
asSynchronized() |
|
MutableFloatByteMap |
asUnmodifiable() |
|
MutableByteFloatMap |
flipUniqueValues() |
Return the ByteFloatMap that is obtained by flipping the direction of this map and making the associations
from value to key.
|
byte |
getIfAbsentPut(float key,
byte value) |
|
byte |
getIfAbsentPut(float key,
ByteFunction0 function) |
|
<P> byte |
getIfAbsentPutWith(float key,
ByteFunction<? super P> function,
P parameter) |
|
byte |
getIfAbsentPutWithKey(float key,
FloatToByteFunction function) |
|
void |
put(float key,
byte value) |
|
void |
putAll(FloatByteMap map) |
|
default void |
putPair(FloatBytePair keyValuePair) |
This method allows MutableFloatByteMap the ability to add an element in the form of FloatBytePair.
|
MutableFloatByteMap |
reject(FloatBytePredicate predicate) |
|
void |
remove(float key) |
|
void |
removeKey(float key) |
|
byte |
removeKeyIfAbsent(float key,
byte value) |
|
MutableFloatByteMap |
select(FloatBytePredicate predicate) |
|
byte |
updateValue(float key,
byte initialValueIfAbsent,
ByteToByteFunction function) |
|
MutableFloatByteMap |
withKeyValue(float key,
byte value) |
|
MutableFloatByteMap |
withoutAllKeys(FloatIterable keys) |
|
MutableFloatByteMap |
withoutKey(float key) |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
containsValue, forEachValue, tap, values
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
byteIterator, clear, collect, reject, select
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(float key, byte value)
default void putPair(FloatBytePair keyValuePair)
put(float, byte)
void putAll(FloatByteMap map)
void removeKey(float key)
void remove(float key)
byte removeKeyIfAbsent(float key, byte value)
byte getIfAbsentPut(float key, byte value)
byte getIfAbsentPut(float key, ByteFunction0 function)
byte getIfAbsentPutWithKey(float key, FloatToByteFunction function)
<P> byte getIfAbsentPutWith(float key, ByteFunction<? super P> function, P parameter)
byte updateValue(float key, byte initialValueIfAbsent, ByteToByteFunction function)
MutableByteFloatMap flipUniqueValues()
FloatByteMap
flipUniqueValues
in interface FloatByteMap
MutableFloatByteMap select(FloatBytePredicate predicate)
select
in interface FloatByteMap
MutableFloatByteMap reject(FloatBytePredicate predicate)
reject
in interface FloatByteMap
MutableFloatByteMap withKeyValue(float key, byte value)
MutableFloatByteMap withoutKey(float key)
MutableFloatByteMap withoutAllKeys(FloatIterable keys)
MutableFloatByteMap asUnmodifiable()
MutableFloatByteMap asSynchronized()
byte addToValue(float key, byte toBeAdded)
Copyright © 2004–2018. All rights reserved.