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 |
---|---|---|
MutableShortIntMap |
MutableShortIntMapFactory.empty() |
|
<T> MutableShortIntMap |
MutableShortIntMapFactory.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction) |
Creates an
MutableShortIntMap from an Iterable<T> by applying keyFunction and valueFunction . |
MutableShortIntMap |
MutableShortIntMapFactory.of() |
Same as
MutableShortIntMapFactory.empty() . |
MutableShortIntMap |
MutableShortIntMapFactory.ofAll(ShortIntMap map) |
|
MutableShortIntMap |
MutableShortIntMapFactory.ofInitialCapacity(int capacity) |
Same as
MutableShortIntMapFactory.empty() . |
MutableShortIntMap |
MutableShortIntMapFactory.with() |
Same as
MutableShortIntMapFactory.empty() . |
MutableShortIntMap |
MutableShortIntMapFactory.withAll(ShortIntMap map) |
|
MutableShortIntMap |
MutableShortIntMapFactory.withInitialCapacity(int capacity) |
Same as
MutableShortIntMapFactory.empty() . |
Modifier and Type | Method | Description |
---|---|---|
MutableShortIntMap |
MutableShortIntMap.asSynchronized() |
|
MutableShortIntMap |
MutableShortIntMap.asUnmodifiable() |
|
MutableShortIntMap |
MutableIntShortMap.flipUniqueValues() |
|
MutableShortIntMap |
MutableShortIntMap.reject(ShortIntPredicate predicate) |
|
MutableShortIntMap |
MutableShortIntMap.select(ShortIntPredicate predicate) |
|
default MutableShortIntMap |
MutableShortIntMap.withAllKeyValues(Iterable<ShortIntPair> keyValuePairs) |
|
MutableShortIntMap |
MutableShortIntMap.withKeyValue(short key,
int value) |
|
MutableShortIntMap |
MutableShortIntMap.withoutAllKeys(ShortIterable keys) |
|
MutableShortIntMap |
MutableShortIntMap.withoutKey(short key) |
Modifier and Type | Class | Description |
---|---|---|
class |
ShortIntHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
SynchronizedShortIntMap |
A synchronized view of a
MutableShortIntMap . |
class |
UnmodifiableShortIntMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
Modifier and Type | Method | Description |
---|---|---|
MutableShortIntMap |
ShortIntHashMap.asSynchronized() |
|
MutableShortIntMap |
SynchronizedShortIntMap.asSynchronized() |
|
MutableShortIntMap |
UnmodifiableShortIntMap.asSynchronized() |
|
MutableShortIntMap |
ShortIntHashMap.asUnmodifiable() |
|
MutableShortIntMap |
SynchronizedShortIntMap.asUnmodifiable() |
|
MutableShortIntMap |
UnmodifiableShortIntMap.asUnmodifiable() |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.empty() |
|
MutableShortIntMap |
IntShortHashMap.flipUniqueValues() |
|
MutableShortIntMap |
SynchronizedIntShortMap.flipUniqueValues() |
|
MutableShortIntMap |
UnmodifiableIntShortMap.flipUniqueValues() |
|
<T> MutableShortIntMap |
MutableShortIntMapFactoryImpl.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction) |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.of() |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.ofAll(ShortIntMap map) |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.ofInitialCapacity(int capacity) |
|
MutableShortIntMap |
SynchronizedShortIntMap.reject(ShortIntPredicate predicate) |
|
MutableShortIntMap |
UnmodifiableShortIntMap.reject(ShortIntPredicate predicate) |
|
MutableShortIntMap |
SynchronizedShortIntMap.select(ShortIntPredicate predicate) |
|
MutableShortIntMap |
UnmodifiableShortIntMap.select(ShortIntPredicate predicate) |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.with() |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.withAll(ShortIntMap map) |
|
MutableShortIntMap |
MutableShortIntMapFactoryImpl.withInitialCapacity(int capacity) |
|
MutableShortIntMap |
SynchronizedShortIntMap.withKeyValue(short key,
int value) |
|
MutableShortIntMap |
UnmodifiableShortIntMap.withKeyValue(short key,
int value) |
|
MutableShortIntMap |
SynchronizedShortIntMap.withoutAllKeys(ShortIterable keys) |
|
MutableShortIntMap |
UnmodifiableShortIntMap.withoutAllKeys(ShortIterable keys) |
|
MutableShortIntMap |
SynchronizedShortIntMap.withoutKey(short key) |
|
MutableShortIntMap |
UnmodifiableShortIntMap.withoutKey(short key) |
Constructor | Description |
---|---|
SynchronizedShortIntMap(MutableShortIntMap map) |
|
SynchronizedShortIntMap(MutableShortIntMap map,
Object newLock) |
|
UnmodifiableShortIntMap(MutableShortIntMap map) |
Copyright © 2004–2019. All rights reserved.