Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntShortMap
Packages that use ImmutableIntShortMap
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 immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of ImmutableIntShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableIntShortMapModifier and TypeMethodDescriptionImmutableIntShortMapFactory.empty()
ImmutableIntShortMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntShortMapFactory.of()
Same asImmutableIntShortMapFactory.empty()
.ImmutableIntShortMapFactory.of
(int key, short value) ImmutableIntShortMapFactory.ofAll
(IntShortMap map) ImmutableIntShortMapFactory.with()
Same asImmutableIntShortMapFactory.empty()
.ImmutableIntShortMapFactory.with
(int key, short value) ImmutableIntShortMapFactory.withAll
(IntShortMap map) -
Uses of ImmutableIntShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntShortMapModifier and TypeMethodDescriptionImmutableShortIntMap.flipUniqueValues()
ImmutableIntShortMap.newWithKeyValue
(int key, short value) Copy this map, associate the value with the key (replacing the value if one already exists forkey
), and return the copy as new immutable map.ImmutableIntShortMap.newWithoutAllKeys
(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntShortMap.newWithoutKey
(int key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableIntShortMap.reject
(IntShortPredicate predicate) ImmutableIntShortMap.select
(IntShortPredicate predicate) IntShortMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableIntShortMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableIntShortMapModifier and TypeClassDescription(package private) final class
ImmutableIntShortEmptyMap is an optimization forImmutableIntShortMap
of size 0.(package private) final class
ImmutableIntShortHashMap is the non-modifiable equivalent ofIntShortHashMap
.(package private) final class
ImmutableIntShortSingletonMap is an optimization forImmutableIntShortMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntShortMapModifier and TypeFieldDescription(package private) static final ImmutableIntShortMap
ImmutableIntShortEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntShortMapModifier and TypeMethodDescriptionImmutableIntShortMapFactoryImpl.empty()
ImmutableShortIntEmptyMap.flipUniqueValues()
ImmutableShortIntHashMap.flipUniqueValues()
ImmutableShortIntSingletonMap.flipUniqueValues()
ImmutableIntShortMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableIntShortEmptyMap.newWithKeyValue
(int key, short value) ImmutableIntShortHashMap.newWithKeyValue
(int key, short value) ImmutableIntShortSingletonMap.newWithKeyValue
(int key, short value) ImmutableIntShortEmptyMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntShortHashMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntShortSingletonMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntShortEmptyMap.newWithoutKey
(int key) ImmutableIntShortHashMap.newWithoutKey
(int key) ImmutableIntShortSingletonMap.newWithoutKey
(int key) ImmutableIntShortMapFactoryImpl.of()
ImmutableIntShortMapFactoryImpl.of
(int key, short value) ImmutableIntShortMapFactoryImpl.ofAll
(IntShortMap map) ImmutableIntShortEmptyMap.reject
(IntShortPredicate predicate) ImmutableIntShortHashMap.reject
(IntShortPredicate predicate) ImmutableIntShortSingletonMap.reject
(IntShortPredicate predicate) ImmutableIntShortEmptyMap.select
(IntShortPredicate predicate) ImmutableIntShortHashMap.select
(IntShortPredicate predicate) ImmutableIntShortSingletonMap.select
(IntShortPredicate predicate) ImmutableIntShortEmptyMap.toImmutable()
ImmutableIntShortHashMap.toImmutable()
ImmutableIntShortSingletonMap.toImmutable()
ImmutableIntShortMapFactoryImpl.with()
ImmutableIntShortMapFactoryImpl.with
(int key, short value) ImmutableIntShortMapFactoryImpl.withAll
(IntShortMap map) -
Uses of ImmutableIntShortMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntShortMapModifier and TypeMethodDescriptionIntShortHashMap.toImmutable()
SynchronizedIntShortMap.toImmutable()
UnmodifiableIntShortMap.toImmutable()