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, toStringclear, collect, intIterator, reject, selectcontainsValue, forEachValue, valuesallSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizevoid 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 ByteIntMapMutableByteIntMap reject(ByteIntPredicate predicate)
reject in interface ByteIntMapMutableByteIntMap 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–2017. All rights reserved.