| 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 |
|---|---|
MutableCharByteMap |
MutableCharByteMapFactory.empty() |
<T> MutableCharByteMap |
MutableCharByteMapFactory.from(Iterable<T> iterable,
CharFunction<? super T> keyFunction,
ByteFunction<? super T> valueFunction)
Creates an
MutableCharByteMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableCharByteMap |
MutableCharByteMapFactory.of()
Same as
MutableCharByteMapFactory.empty(). |
MutableCharByteMap |
MutableCharByteMapFactory.ofAll(CharByteMap map)
|
MutableCharByteMap |
MutableCharByteMapFactory.ofInitialCapacity(int capacity)
Same as
MutableCharByteMapFactory.empty(). |
MutableCharByteMap |
MutableCharByteMapFactory.with()
Same as
MutableCharByteMapFactory.empty(). |
MutableCharByteMap |
MutableCharByteMapFactory.withAll(CharByteMap map) |
MutableCharByteMap |
MutableCharByteMapFactory.withInitialCapacity(int capacity)
Same as
MutableCharByteMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableCharByteMap |
MutableCharByteMap.asSynchronized() |
MutableCharByteMap |
MutableCharByteMap.asUnmodifiable() |
MutableCharByteMap |
MutableByteCharMap.flipUniqueValues() |
MutableCharByteMap |
MutableCharByteMap.reject(CharBytePredicate predicate) |
MutableCharByteMap |
MutableCharByteMap.select(CharBytePredicate predicate) |
default MutableCharByteMap |
MutableCharByteMap.withAllKeyValues(Iterable<CharBytePair> keyValuePairs) |
MutableCharByteMap |
MutableCharByteMap.withKeyValue(char key,
byte value) |
MutableCharByteMap |
MutableCharByteMap.withoutAllKeys(CharIterable keys) |
MutableCharByteMap |
MutableCharByteMap.withoutKey(char key) |
Copyright © 2004–2020. All rights reserved.