Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortIntMap
-
Packages that use ImmutableShortIntMap 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 ImmutableShortIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortIntMap Modifier and Type Method Description ImmutableShortIntMap
ImmutableShortIntMapFactory. empty()
<T> ImmutableShortIntMap
ImmutableShortIntMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortIntMap
ImmutableShortIntMapFactory. of()
Same asImmutableShortIntMapFactory.empty()
.ImmutableShortIntMap
ImmutableShortIntMapFactory. of(short key, int value)
ImmutableShortIntMap
ImmutableShortIntMapFactory. ofAll(ShortIntMap map)
ImmutableShortIntMap
ImmutableShortIntMapFactory. with()
Same asImmutableShortIntMapFactory.empty()
.ImmutableShortIntMap
ImmutableShortIntMapFactory. with(short key, int value)
ImmutableShortIntMap
ImmutableShortIntMapFactory. withAll(ShortIntMap map)
-
Uses of ImmutableShortIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortIntMap Modifier and Type Method Description ImmutableShortIntMap
ImmutableIntShortMap. flipUniqueValues()
ImmutableShortIntMap
ImmutableShortIntMap. newWithKeyValue(short key, int 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.ImmutableShortIntMap
ImmutableShortIntMap. 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.ImmutableShortIntMap
ImmutableShortIntMap. 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.ImmutableShortIntMap
ImmutableShortIntMap. reject(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntMap. select(ShortIntPredicate predicate)
ImmutableShortIntMap
ShortIntMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortIntMap Modifier and Type Class Description (package private) class
ImmutableShortIntEmptyMap
ImmutableShortIntEmptyMap is an optimization forImmutableShortIntMap
of size 0.(package private) class
ImmutableShortIntHashMap
ImmutableShortIntHashMap is the non-modifiable equivalent ofShortIntHashMap
.(package private) class
ImmutableShortIntSingletonMap
ImmutableShortIntSingletonMap is an optimization forImmutableShortIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortIntMap Modifier and Type Field Description (package private) static ImmutableShortIntMap
ImmutableShortIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortIntMap Modifier and Type Method Description ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. empty()
ImmutableShortIntMap
ImmutableIntShortEmptyMap. flipUniqueValues()
ImmutableShortIntMap
ImmutableIntShortHashMap. flipUniqueValues()
ImmutableShortIntMap
ImmutableIntShortSingletonMap. flipUniqueValues()
<T> ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. newWithKeyValue(short key, int value)
ImmutableShortIntMap
ImmutableShortIntHashMap. newWithKeyValue(short key, int value)
ImmutableShortIntMap
ImmutableShortIntSingletonMap. newWithKeyValue(short key, int value)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortIntMap
ImmutableShortIntHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortIntMap
ImmutableShortIntSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. newWithoutKey(short key)
ImmutableShortIntMap
ImmutableShortIntHashMap. newWithoutKey(short key)
ImmutableShortIntMap
ImmutableShortIntSingletonMap. newWithoutKey(short key)
ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. of()
ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. of(short key, int value)
ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. ofAll(ShortIntMap map)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. reject(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntHashMap. reject(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntSingletonMap. reject(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. select(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntHashMap. select(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntSingletonMap. select(ShortIntPredicate predicate)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. toImmutable()
ImmutableShortIntMap
ImmutableShortIntHashMap. toImmutable()
ImmutableShortIntMap
ImmutableShortIntSingletonMap. toImmutable()
ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. with()
ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. with(short key, int value)
ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. withAll(ShortIntMap map)
-
Uses of ImmutableShortIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortIntMap Modifier and Type Method Description ImmutableShortIntMap
ShortIntHashMap. toImmutable()
ImmutableShortIntMap
SynchronizedShortIntMap. toImmutable()
ImmutableShortIntMap
UnmodifiableShortIntMap. toImmutable()
-