| 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 |
|---|---|
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.empty() |
<T,V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
Function<? super T,? extends V> valueFunction)
Creates an
MutableLongObjectMap from an Iterable<T> by applying keyFunction and valueFunction. |
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.of()
Same as
MutableLongObjectMapFactory.empty(). |
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.ofAll(LongObjectMap<? extends V> map)
|
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.ofInitialCapacity(int capacity)
Same as
MutableLongObjectMapFactory.empty(). |
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.with()
Same as
MutableLongObjectMapFactory.empty(). |
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.withAll(LongObjectMap<? extends V> map) |
<V> MutableLongObjectMap<V> |
MutableLongObjectMapFactory.withInitialCapacity(int capacity)
Same as
MutableLongObjectMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableLongObjectMap<V> |
MutableLongObjectMap.asSynchronized() |
MutableLongObjectMap<V> |
MutableLongObjectMap.asUnmodifiable() |
MutableLongObjectMap<K> |
MutableObjectLongMap.flipUniqueValues() |
MutableLongObjectMap<V> |
MutableLongObjectMap.reject(LongObjectPredicate<? super V> predicate) |
MutableLongObjectMap<V> |
MutableLongObjectMap.select(LongObjectPredicate<? super V> predicate) |
MutableLongObjectMap<V> |
MutableLongObjectMap.tap(Procedure<? super V> procedure) |
default MutableLongObjectMap<V> |
MutableLongObjectMap.withAllKeyValues(Iterable<LongObjectPair<V>> keyValuePairs) |
MutableLongObjectMap<V> |
MutableLongObjectMap.withKeyValue(long key,
V value) |
MutableLongObjectMap<V> |
MutableLongObjectMap.withoutAllKeys(LongIterable keys) |
MutableLongObjectMap<V> |
MutableLongObjectMap.withoutKey(long key) |
Copyright © 2004–2019. All rights reserved.