Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortDoubleMap
-
Packages that use ImmutableShortDoubleMap 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 ImmutableShortDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortDoubleMap Modifier and Type Method Description ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. empty()
<T> ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableShortDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. of()
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. of(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. ofAll(ShortDoubleMap map)
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. with()
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. with(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. withAll(ShortDoubleMap map)
-
Uses of ImmutableShortDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortDoubleMap Modifier and Type Method Description ImmutableShortDoubleMap
ImmutableDoubleShortMap. flipUniqueValues()
ImmutableShortDoubleMap
ImmutableShortDoubleMap. newWithKeyValue(short key, double 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.ImmutableShortDoubleMap
ImmutableShortDoubleMap. 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.ImmutableShortDoubleMap
ImmutableShortDoubleMap. 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.ImmutableShortDoubleMap
ImmutableShortDoubleMap. reject(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleMap. select(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ShortDoubleMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortDoubleMap Modifier and Type Class Description (package private) class
ImmutableShortDoubleEmptyMap
ImmutableShortDoubleEmptyMap is an optimization forImmutableShortDoubleMap
of size 0.(package private) class
ImmutableShortDoubleHashMap
ImmutableShortDoubleHashMap is the non-modifiable equivalent ofShortDoubleHashMap
.(package private) class
ImmutableShortDoubleSingletonMap
ImmutableShortDoubleSingletonMap is an optimization forImmutableShortDoubleMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortDoubleMap Modifier and Type Field Description (package private) static ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortDoubleMap Modifier and Type Method Description ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. empty()
ImmutableShortDoubleMap
ImmutableDoubleShortEmptyMap. flipUniqueValues()
ImmutableShortDoubleMap
ImmutableDoubleShortHashMap. flipUniqueValues()
ImmutableShortDoubleMap
ImmutableDoubleShortSingletonMap. flipUniqueValues()
<T> ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. newWithKeyValue(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. newWithKeyValue(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. newWithKeyValue(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. newWithoutKey(short key)
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. newWithoutKey(short key)
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. newWithoutKey(short key)
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. of()
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. of(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. ofAll(ShortDoubleMap map)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. reject(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. reject(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. reject(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. select(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. select(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. select(ShortDoublePredicate predicate)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. toImmutable()
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. toImmutable()
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. toImmutable()
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. with()
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. with(short key, double value)
ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. withAll(ShortDoubleMap map)
-
Uses of ImmutableShortDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortDoubleMap Modifier and Type Method Description ImmutableShortDoubleMap
ShortDoubleHashMap. toImmutable()
ImmutableShortDoubleMap
SynchronizedShortDoubleMap. toImmutable()
ImmutableShortDoubleMap
UnmodifiableShortDoubleMap. toImmutable()
-