| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.map.primitive | |
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| Modifier and Type | Method and Description |
|---|---|
MutableByteByteMap |
MutableByteByteMapFactory.empty() |
<T> MutableByteByteMap |
MutableByteByteMapFactory.from(Iterable<T> iterable,
ByteFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableByteByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableByteByteMap |
MutableByteByteMapFactory.of()
Same as
MutableByteByteMapFactory.empty(). |
MutableByteByteMap |
MutableByteByteMapFactory.ofAll(ByteByteMap map)
|
MutableByteByteMap |
MutableByteByteMapFactory.ofInitialCapacity(int capacity)
Same as
MutableByteByteMapFactory.empty(). |
MutableByteByteMap |
MutableByteByteMapFactory.with()
Same as
MutableByteByteMapFactory.empty(). |
MutableByteByteMap |
MutableByteByteMapFactory.withAll(ByteByteMap map) |
MutableByteByteMap |
MutableByteByteMapFactory.withInitialCapacity(int capacity)
Same as
MutableByteByteMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableByteByteMap |
MutableByteByteMap.asSynchronized() |
MutableByteByteMap |
MutableByteByteMap.asUnmodifiable() |
MutableByteByteMap |
MutableByteByteMap.flipUniqueValues() |
MutableByteByteMap |
MutableByteByteMap.reject(ByteBytePredicate predicate) |
MutableByteByteMap |
MutableByteByteMap.select(ByteBytePredicate predicate) |
default MutableByteByteMap |
MutableByteByteMap.withAllKeyValues(Iterable<ByteBytePair> keyValuePairs) |
MutableByteByteMap |
MutableByteByteMap.withKeyValue(byte key,
byte value) |
MutableByteByteMap |
MutableByteByteMap.withoutAllKeys(ByteIterable keys) |
MutableByteByteMap |
MutableByteByteMap.withoutKey(byte key) |
Copyright © 2004–2019. All rights reserved.