Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortIntMap
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.
|
-
Uses of MutableShortIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortIntMap Modifier and Type Method Description MutableShortIntMap
MutableShortIntMapFactory. empty()
<T> MutableShortIntMap
MutableShortIntMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortIntMap
MutableShortIntMapFactory. of()
Same asMutableShortIntMapFactory.empty()
.MutableShortIntMap
MutableShortIntMapFactory. ofAll(ShortIntMap map)
MutableShortIntMap
MutableShortIntMapFactory. ofInitialCapacity(int capacity)
Same asMutableShortIntMapFactory.empty()
.MutableShortIntMap
MutableShortIntMapFactory. with()
Same asMutableShortIntMapFactory.empty()
.MutableShortIntMap
MutableShortIntMapFactory. withAll(ShortIntMap map)
MutableShortIntMap
MutableShortIntMapFactory. withInitialCapacity(int capacity)
Same asMutableShortIntMapFactory.empty()
. -
Uses of MutableShortIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortIntMap Modifier and Type Method Description MutableShortIntMap
MutableShortIntMap. asSynchronized()
Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableShortIntMap
MutableShortIntMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableShortIntMap
MutableIntShortMap. flipUniqueValues()
MutableShortIntMap
MutableShortIntMap. reject(ShortIntPredicate predicate)
MutableShortIntMap
MutableShortIntMap. select(ShortIntPredicate predicate)
default MutableShortIntMap
MutableShortIntMap. withAllKeyValues(Iterable<ShortIntPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableShortIntMap
MutableShortIntMap. withKeyValue(short key, int value)
Associates a value with the specified key.MutableShortIntMap
MutableShortIntMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortIntMap
MutableShortIntMap. withoutKey(short key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortIntMap Modifier and Type Class Description class
ShortIntHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedShortIntMap
A synchronized view of aMutableShortIntMap
.class
UnmodifiableShortIntMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortIntMap 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)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortIntMap Constructor Description SynchronizedShortIntMap(MutableShortIntMap map)
SynchronizedShortIntMap(MutableShortIntMap map, Object newLock)
UnmodifiableShortIntMap(MutableShortIntMap map)