Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntShortMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableIntShortMap in org.eclipse.collections.api.factory.map.primitive
Modifier and TypeMethodDescriptionMutableIntShortMapFactory.empty()
MutableIntShortMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntShortMapFactory.of()
Same asMutableIntShortMapFactory.empty()
.default MutableIntShortMap
MutableIntShortMapFactory.of
(int key, short value) default MutableIntShortMap
MutableIntShortMapFactory.of
(int key1, short value1, int key2, short value2) default MutableIntShortMap
MutableIntShortMapFactory.of
(int key1, short value1, int key2, short value2, int key3, short value3) default MutableIntShortMap
MutableIntShortMapFactory.of
(int key1, short value1, int key2, short value2, int key3, short value3, int key4, short value4) MutableIntShortMapFactory.ofAll
(IntShortMap map) MutableIntShortMapFactory.ofInitialCapacity
(int capacity) Same asMutableIntShortMapFactory.empty()
.MutableIntShortMapFactory.with()
Same asMutableIntShortMapFactory.empty()
.default MutableIntShortMap
MutableIntShortMapFactory.with
(int key, short value) default MutableIntShortMap
MutableIntShortMapFactory.with
(int key1, short value1, int key2, short value2) default MutableIntShortMap
MutableIntShortMapFactory.with
(int key1, short value1, int key2, short value2, int key3, short value3) default MutableIntShortMap
MutableIntShortMapFactory.with
(int key1, short value1, int key2, short value2, int key3, short value3, int key4, short value4) MutableIntShortMapFactory.withAll
(IntShortMap map) MutableIntShortMapFactory.withInitialCapacity
(int capacity) Same asMutableIntShortMapFactory.empty()
. -
Uses of MutableIntShortMap in org.eclipse.collections.api.map.primitive
Modifier and TypeMethodDescriptionMutableIntShortMap.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.MutableIntShortMap.asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableShortIntMap.flipUniqueValues()
MutableIntShortMap.reject
(IntShortPredicate predicate) MutableIntShortMap.select
(IntShortPredicate predicate) default MutableIntShortMap
MutableIntShortMap.withAllKeyValues
(Iterable<IntShortPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntShortMap.withKeyValue
(int key, short value) Associates a value with the specified key.MutableIntShortMap.withoutAllKeys
(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntShortMap.withoutKey
(int key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntShortMap in org.eclipse.collections.impl.map.mutable.primitive
Modifier and TypeClassDescriptionclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
A synchronized view of aMutableIntShortMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Modifier and TypeMethodDescriptionIntShortHashMap.asSynchronized()
SynchronizedIntShortMap.asSynchronized()
UnmodifiableIntShortMap.asSynchronized()
IntShortHashMap.asUnmodifiable()
SynchronizedIntShortMap.asUnmodifiable()
UnmodifiableIntShortMap.asUnmodifiable()
MutableIntShortMapFactoryImpl.empty()
ShortIntHashMap.flipUniqueValues()
SynchronizedShortIntMap.flipUniqueValues()
UnmodifiableShortIntMap.flipUniqueValues()
MutableIntShortMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableIntShortMapFactoryImpl.of()
MutableIntShortMapFactoryImpl.of
(int key, short value) MutableIntShortMapFactoryImpl.of
(int key1, short value1, int key2, short value2) MutableIntShortMapFactoryImpl.of
(int key1, short value1, int key2, short value2, int key3, short value3) MutableIntShortMapFactoryImpl.of
(int key1, short value1, int key2, short value2, int key3, short value3, int key4, short value4) MutableIntShortMapFactoryImpl.ofAll
(IntShortMap map) MutableIntShortMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedIntShortMap.reject
(IntShortPredicate predicate) UnmodifiableIntShortMap.reject
(IntShortPredicate predicate) SynchronizedIntShortMap.select
(IntShortPredicate predicate) UnmodifiableIntShortMap.select
(IntShortPredicate predicate) MutableIntShortMapFactoryImpl.with()
MutableIntShortMapFactoryImpl.with
(int key, short value) MutableIntShortMapFactoryImpl.with
(int key1, short value1, int key2, short value2) MutableIntShortMapFactoryImpl.with
(int key1, short value1, int key2, short value2, int key3, short value3) MutableIntShortMapFactoryImpl.with
(int key1, short value1, int key2, short value2, int key3, short value3, int key4, short value4) MutableIntShortMapFactoryImpl.withAll
(IntShortMap map) MutableIntShortMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedIntShortMap.withKeyValue
(int key, short value) UnmodifiableIntShortMap.withKeyValue
(int key, short value) SynchronizedIntShortMap.withoutAllKeys
(IntIterable keys) UnmodifiableIntShortMap.withoutAllKeys
(IntIterable keys) SynchronizedIntShortMap.withoutKey
(int key) UnmodifiableIntShortMap.withoutKey
(int key)