| 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 |
|---|---|
ImmutableShortLongMap |
ImmutableShortLongMapFactory.empty() |
<T> ImmutableShortLongMap |
ImmutableShortLongMapFactory.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
LongFunction<? super T> valueFunction)
Creates an
ImmutableShortLongMap from an Iterable<T> by applying keyFunction and valueFunction. |
ImmutableShortLongMap |
ImmutableShortLongMapFactory.of()
Same as
ImmutableShortLongMapFactory.empty(). |
ImmutableShortLongMap |
ImmutableShortLongMapFactory.of(short key,
long value)
|
ImmutableShortLongMap |
ImmutableShortLongMapFactory.ofAll(ShortLongMap map)
|
ImmutableShortLongMap |
ImmutableShortLongMapFactory.with()
Same as
ImmutableShortLongMapFactory.empty(). |
ImmutableShortLongMap |
ImmutableShortLongMapFactory.with(short key,
long value) |
ImmutableShortLongMap |
ImmutableShortLongMapFactory.withAll(ShortLongMap map) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableShortLongMap |
ImmutableLongShortMap.flipUniqueValues() |
ImmutableShortLongMap |
ImmutableShortLongMap.newWithKeyValue(short key,
long value) |
ImmutableShortLongMap |
ImmutableShortLongMap.newWithoutAllKeys(ShortIterable keys) |
ImmutableShortLongMap |
ImmutableShortLongMap.newWithoutKey(short key) |
ImmutableShortLongMap |
ImmutableShortLongMap.reject(ShortLongPredicate predicate) |
ImmutableShortLongMap |
ImmutableShortLongMap.select(ShortLongPredicate predicate) |
ImmutableShortLongMap |
ShortLongMap.toImmutable() |
Copyright © 2004–2019. All rights reserved.