public interface MutableByteIntMap extends ByteIntMap, MutableIntValuesMap
Modifier and Type | Method and Description |
---|---|
int |
addToValue(byte key,
int toBeAdded) |
MutableByteIntMap |
asSynchronized() |
MutableByteIntMap |
asUnmodifiable() |
int |
getIfAbsentPut(byte key,
int value) |
int |
getIfAbsentPut(byte key,
IntFunction0 function) |
<P> int |
getIfAbsentPutWith(byte key,
IntFunction<? super P> function,
P parameter) |
int |
getIfAbsentPutWithKey(byte key,
ByteToIntFunction function) |
void |
put(byte key,
int value) |
void |
putAll(ByteIntMap map) |
MutableByteIntMap |
reject(ByteIntPredicate predicate) |
void |
remove(byte key) |
void |
removeKey(byte key) |
int |
removeKeyIfAbsent(byte key,
int value) |
MutableByteIntMap |
select(ByteIntPredicate predicate) |
int |
updateValue(byte key,
int initialValueIfAbsent,
IntToIntFunction function) |
MutableByteIntMap |
withKeyValue(byte key,
int value) |
MutableByteIntMap |
withoutAllKeys(ByteIterable keys) |
MutableByteIntMap |
withoutKey(byte key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, intIterator, 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(byte key, int value)
void putAll(ByteIntMap map)
void removeKey(byte key)
void remove(byte key)
int removeKeyIfAbsent(byte key, int value)
int getIfAbsentPut(byte key, int value)
int getIfAbsentPut(byte key, IntFunction0 function)
int getIfAbsentPutWithKey(byte key, ByteToIntFunction function)
<P> int getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)
int updateValue(byte key, int initialValueIfAbsent, IntToIntFunction function)
MutableByteIntMap select(ByteIntPredicate predicate)
select
in interface ByteIntMap
MutableByteIntMap reject(ByteIntPredicate predicate)
reject
in interface ByteIntMap
MutableByteIntMap withKeyValue(byte key, int value)
MutableByteIntMap withoutKey(byte key)
MutableByteIntMap withoutAllKeys(ByteIterable keys)
MutableByteIntMap asUnmodifiable()
MutableByteIntMap asSynchronized()
int addToValue(byte key, int toBeAdded)
Copyright © 2004–2016. All rights reserved.