| 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 |
|---|---|
MutableShortCharMap |
MutableShortCharMapFactory.empty() |
<T> MutableShortCharMap |
MutableShortCharMapFactory.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
CharFunction<? super T> valueFunction)
Creates an
MutableShortCharMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableShortCharMap |
MutableShortCharMapFactory.of()
Same as
MutableShortCharMapFactory.empty(). |
MutableShortCharMap |
MutableShortCharMapFactory.ofAll(ShortCharMap map)
|
MutableShortCharMap |
MutableShortCharMapFactory.ofInitialCapacity(int capacity)
Same as
MutableShortCharMapFactory.empty(). |
MutableShortCharMap |
MutableShortCharMapFactory.with()
Same as
MutableShortCharMapFactory.empty(). |
MutableShortCharMap |
MutableShortCharMapFactory.withAll(ShortCharMap map) |
MutableShortCharMap |
MutableShortCharMapFactory.withInitialCapacity(int capacity)
Same as
MutableShortCharMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableShortCharMap |
MutableShortCharMap.asSynchronized() |
MutableShortCharMap |
MutableShortCharMap.asUnmodifiable() |
MutableShortCharMap |
MutableCharShortMap.flipUniqueValues() |
MutableShortCharMap |
MutableShortCharMap.reject(ShortCharPredicate predicate) |
MutableShortCharMap |
MutableShortCharMap.select(ShortCharPredicate predicate) |
default MutableShortCharMap |
MutableShortCharMap.withAllKeyValues(Iterable<ShortCharPair> keyValuePairs) |
MutableShortCharMap |
MutableShortCharMap.withKeyValue(short key,
char value) |
MutableShortCharMap |
MutableShortCharMap.withoutAllKeys(ShortIterable keys) |
MutableShortCharMap |
MutableShortCharMap.withoutKey(short key) |
Copyright © 2004–2020. All rights reserved.