Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortLongMap
-
Packages that use ImmutableShortLongMap 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.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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 ImmutableShortLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortLongMap Modifier and Type Method Description ImmutableShortLongMap
ImmutableShortLongMapFactory. empty()
<T> ImmutableShortLongMap
ImmutableShortLongMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableShortLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortLongMap
ImmutableShortLongMapFactory. of()
Same asImmutableShortLongMapFactory.empty()
.ImmutableShortLongMap
ImmutableShortLongMapFactory. of(short key, long value)
ImmutableShortLongMap
ImmutableShortLongMapFactory. ofAll(ShortLongMap map)
ImmutableShortLongMap
ImmutableShortLongMapFactory. with()
Same asImmutableShortLongMapFactory.empty()
.ImmutableShortLongMap
ImmutableShortLongMapFactory. with(short key, long value)
ImmutableShortLongMap
ImmutableShortLongMapFactory. withAll(ShortLongMap map)
-
Uses of ImmutableShortLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortLongMap Modifier and Type Method Description ImmutableShortLongMap
ImmutableLongShortMap. flipUniqueValues()
ImmutableShortLongMap
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
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
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
ImmutableShortLongMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongMap. select(ShortLongPredicate predicate)
ImmutableShortLongMap
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 ImmutableShortLongMap Modifier and Type Class Description (package private) class
ImmutableShortLongEmptyMap
ImmutableShortLongEmptyMap is an optimization forImmutableShortLongMap
of size 0.(package private) class
ImmutableShortLongHashMap
ImmutableShortLongHashMap is the non-modifiable equivalent ofShortLongHashMap
.(package private) class
ImmutableShortLongSingletonMap
ImmutableShortLongSingletonMap is an optimization forImmutableShortLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortLongMap Modifier and Type Field Description (package private) static ImmutableShortLongMap
ImmutableShortLongEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortLongMap Modifier and Type Method Description ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. empty()
ImmutableShortLongMap
ImmutableLongShortEmptyMap. flipUniqueValues()
ImmutableShortLongMap
ImmutableLongShortHashMap. flipUniqueValues()
ImmutableShortLongMap
ImmutableLongShortSingletonMap. flipUniqueValues()
<T> ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. newWithKeyValue(short key, long value)
ImmutableShortLongMap
ImmutableShortLongHashMap. newWithKeyValue(short key, long value)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. newWithKeyValue(short key, long value)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortLongMap
ImmutableShortLongHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. newWithoutKey(short key)
ImmutableShortLongMap
ImmutableShortLongHashMap. newWithoutKey(short key)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. newWithoutKey(short key)
ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. of()
ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. of(short key, long value)
ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. ofAll(ShortLongMap map)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongHashMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. reject(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. select(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongHashMap. select(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. select(ShortLongPredicate predicate)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. toImmutable()
ImmutableShortLongMap
ImmutableShortLongHashMap. toImmutable()
ImmutableShortLongMap
ImmutableShortLongSingletonMap. toImmutable()
ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. with()
ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. with(short key, long value)
ImmutableShortLongMap
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 ImmutableShortLongMap Modifier and Type Method Description ImmutableShortLongMap
ShortLongHashMap. toImmutable()
ImmutableShortLongMap
SynchronizedShortLongMap. toImmutable()
ImmutableShortLongMap
UnmodifiableShortLongMap. toImmutable()
-