Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortLongMap
Packages that use ImmutableShortLongMap
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 ImmutableShortLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortLongMapModifier and TypeMethodDescriptionImmutableShortLongMapFactory.empty()
ImmutableShortLongMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableShortLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortLongMapFactory.of()
Same asImmutableShortLongMapFactory.empty()
.ImmutableShortLongMapFactory.of
(short key, long value) ImmutableShortLongMapFactory.ofAll
(ShortLongMap map) ImmutableShortLongMapFactory.with()
Same asImmutableShortLongMapFactory.empty()
.ImmutableShortLongMapFactory.with
(short key, long value) ImmutableShortLongMapFactory.withAll
(ShortLongMap map) -
Uses of ImmutableShortLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortLongMapModifier and TypeMethodDescriptionImmutableLongShortMap.flipUniqueValues()
ImmutableShortLongMap.newWithKeyValue
(short key, long 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.ImmutableShortLongMap.newWithoutAllKeys
(ShortIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortLongMap.newWithoutKey
(short key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableShortLongMap.reject
(ShortLongPredicate predicate) ImmutableShortLongMap.select
(ShortLongPredicate predicate) ShortLongMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortLongMapModifier and TypeClassDescription(package private) final class
ImmutableShortLongEmptyMap is an optimization forImmutableShortLongMap
of size 0.(package private) final class
ImmutableShortLongHashMap is the non-modifiable equivalent ofShortLongHashMap
.(package private) final class
ImmutableShortLongSingletonMap is an optimization forImmutableShortLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortLongMapModifier and TypeFieldDescription(package private) static final ImmutableShortLongMap
ImmutableShortLongEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortLongMapModifier and TypeMethodDescriptionImmutableShortLongMapFactoryImpl.empty()
ImmutableLongShortEmptyMap.flipUniqueValues()
ImmutableLongShortHashMap.flipUniqueValues()
ImmutableLongShortSingletonMap.flipUniqueValues()
ImmutableShortLongMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) ImmutableShortLongEmptyMap.newWithKeyValue
(short key, long value) ImmutableShortLongHashMap.newWithKeyValue
(short key, long value) ImmutableShortLongSingletonMap.newWithKeyValue
(short key, long value) ImmutableShortLongEmptyMap.newWithoutAllKeys
(ShortIterable keys) ImmutableShortLongHashMap.newWithoutAllKeys
(ShortIterable keys) ImmutableShortLongSingletonMap.newWithoutAllKeys
(ShortIterable keys) ImmutableShortLongEmptyMap.newWithoutKey
(short key) ImmutableShortLongHashMap.newWithoutKey
(short key) ImmutableShortLongSingletonMap.newWithoutKey
(short key) ImmutableShortLongMapFactoryImpl.of()
ImmutableShortLongMapFactoryImpl.of
(short key, long value) ImmutableShortLongMapFactoryImpl.ofAll
(ShortLongMap map) ImmutableShortLongEmptyMap.reject
(ShortLongPredicate predicate) ImmutableShortLongHashMap.reject
(ShortLongPredicate predicate) ImmutableShortLongSingletonMap.reject
(ShortLongPredicate predicate) ImmutableShortLongEmptyMap.select
(ShortLongPredicate predicate) ImmutableShortLongHashMap.select
(ShortLongPredicate predicate) ImmutableShortLongSingletonMap.select
(ShortLongPredicate predicate) ImmutableShortLongEmptyMap.toImmutable()
ImmutableShortLongHashMap.toImmutable()
ImmutableShortLongSingletonMap.toImmutable()
ImmutableShortLongMapFactoryImpl.with()
ImmutableShortLongMapFactoryImpl.with
(short key, long value) ImmutableShortLongMapFactoryImpl.withAll
(ShortLongMap map) -
Uses of ImmutableShortLongMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortLongMapModifier and TypeMethodDescriptionShortLongHashMap.toImmutable()
SynchronizedShortLongMap.toImmutable()
UnmodifiableShortLongMap.toImmutable()