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