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.
|
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
Modifier and Type | Method | Description |
---|---|---|
MutableLongShortMap |
MutableLongShortMapFactory.empty() |
|
<T> MutableLongShortMap |
MutableLongShortMapFactory.from(java.lang.Iterable<T> iterable,
LongFunction<? super T> keyFunction,
ShortFunction<? super T> valueFunction) |
Creates an
MutableLongShortMap from an Iterable<T> by applying keyFunction and valueFunction . |
MutableLongShortMap |
MutableLongShortMapFactory.of() |
Same as
MutableLongShortMapFactory.empty() . |
MutableLongShortMap |
MutableLongShortMapFactory.ofAll(LongShortMap map) |
|
MutableLongShortMap |
MutableLongShortMapFactory.ofInitialCapacity(int capacity) |
Same as
MutableLongShortMapFactory.empty() . |
MutableLongShortMap |
MutableLongShortMapFactory.with() |
Same as
MutableLongShortMapFactory.empty() . |
MutableLongShortMap |
MutableLongShortMapFactory.withAll(LongShortMap map) |
|
MutableLongShortMap |
MutableLongShortMapFactory.withInitialCapacity(int capacity) |
Same as
MutableLongShortMapFactory.empty() . |
Modifier and Type | Method | Description |
---|---|---|
MutableLongShortMap |
MutableLongShortMap.asSynchronized() |
|
MutableLongShortMap |
MutableLongShortMap.asUnmodifiable() |
|
MutableLongShortMap |
MutableShortLongMap.flipUniqueValues() |
|
MutableLongShortMap |
MutableLongShortMap.reject(LongShortPredicate predicate) |
|
MutableLongShortMap |
MutableLongShortMap.select(LongShortPredicate predicate) |
|
default MutableLongShortMap |
MutableLongShortMap.withAllKeyValues(java.lang.Iterable<LongShortPair> keyValuePairs) |
|
MutableLongShortMap |
MutableLongShortMap.withKeyValue(long key,
short value) |
|
MutableLongShortMap |
MutableLongShortMap.withoutAllKeys(LongIterable keys) |
|
MutableLongShortMap |
MutableLongShortMap.withoutKey(long key) |
Modifier and Type | Class | Description |
---|---|---|
class |
LongShortHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
SynchronizedLongShortMap |
A synchronized view of a
MutableLongShortMap . |
class |
UnmodifiableLongShortMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableLongShortMap |
LongShortHashMap.asSynchronized() |
|
MutableLongShortMap |
SynchronizedLongShortMap.asSynchronized() |
|
MutableLongShortMap |
UnmodifiableLongShortMap.asSynchronized() |
|
MutableLongShortMap |
LongShortHashMap.asUnmodifiable() |
|
MutableLongShortMap |
SynchronizedLongShortMap.asUnmodifiable() |
|
MutableLongShortMap |
UnmodifiableLongShortMap.asUnmodifiable() |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.empty() |
|
MutableLongShortMap |
ShortLongHashMap.flipUniqueValues() |
|
MutableLongShortMap |
SynchronizedShortLongMap.flipUniqueValues() |
|
MutableLongShortMap |
UnmodifiableShortLongMap.flipUniqueValues() |
|
<T> MutableLongShortMap |
MutableLongShortMapFactoryImpl.from(java.lang.Iterable<T> iterable,
LongFunction<? super T> keyFunction,
ShortFunction<? super T> valueFunction) |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.of() |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.ofAll(LongShortMap map) |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.ofInitialCapacity(int capacity) |
|
MutableLongShortMap |
SynchronizedLongShortMap.reject(LongShortPredicate predicate) |
|
MutableLongShortMap |
UnmodifiableLongShortMap.reject(LongShortPredicate predicate) |
|
MutableLongShortMap |
SynchronizedLongShortMap.select(LongShortPredicate predicate) |
|
MutableLongShortMap |
UnmodifiableLongShortMap.select(LongShortPredicate predicate) |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.with() |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.withAll(LongShortMap map) |
|
MutableLongShortMap |
MutableLongShortMapFactoryImpl.withInitialCapacity(int capacity) |
|
MutableLongShortMap |
SynchronizedLongShortMap.withKeyValue(long key,
short value) |
|
MutableLongShortMap |
UnmodifiableLongShortMap.withKeyValue(long key,
short value) |
|
MutableLongShortMap |
SynchronizedLongShortMap.withoutAllKeys(LongIterable keys) |
|
MutableLongShortMap |
UnmodifiableLongShortMap.withoutAllKeys(LongIterable keys) |
|
MutableLongShortMap |
SynchronizedLongShortMap.withoutKey(long key) |
|
MutableLongShortMap |
UnmodifiableLongShortMap.withoutKey(long key) |
Constructor | Description |
---|---|
SynchronizedLongShortMap(MutableLongShortMap map) |
|
SynchronizedLongShortMap(MutableLongShortMap map,
java.lang.Object newLock) |
|
UnmodifiableLongShortMap(MutableLongShortMap map) |
Copyright © 2004–2020. All rights reserved.