Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableShortFloatMap
-
Packages that use ImmutableShortFloatMap 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 ImmutableShortFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableShortFloatMap Modifier and Type Method Description ImmutableShortFloatMap
ImmutableShortFloatMapFactory. empty()
<T> ImmutableShortFloatMap
ImmutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortFloatMap
ImmutableShortFloatMapFactory. of()
ImmutableShortFloatMap
ImmutableShortFloatMapFactory. of(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatMapFactory. ofAll(ShortFloatMap map)
ImmutableShortFloatMap
ImmutableShortFloatMapFactory. with()
ImmutableShortFloatMap
ImmutableShortFloatMapFactory. with(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatMapFactory. withAll(ShortFloatMap map)
-
Uses of ImmutableShortFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableShortFloatMap Modifier and Type Method Description ImmutableShortFloatMap
ImmutableFloatShortMap. flipUniqueValues()
ImmutableShortFloatMap
ImmutableShortFloatMap. newWithKeyValue(short key, float 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.ImmutableShortFloatMap
ImmutableShortFloatMap. 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.ImmutableShortFloatMap
ImmutableShortFloatMap. 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.ImmutableShortFloatMap
ImmutableShortFloatMap. reject(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatMap. select(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ShortFloatMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableShortFloatMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableShortFloatMap Modifier and Type Class Description (package private) class
ImmutableShortFloatEmptyMap
ImmutableShortFloatEmptyMap is an optimization forImmutableShortFloatMap
of size 0.(package private) class
ImmutableShortFloatHashMap
ImmutableShortFloatHashMap is the non-modifiable equivalent ofShortFloatHashMap
.(package private) class
ImmutableShortFloatSingletonMap
ImmutableShortFloatSingletonMap is an optimization forImmutableShortFloatMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableShortFloatMap Modifier and Type Field Description (package private) static ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableShortFloatMap Modifier and Type Method Description ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. empty()
ImmutableShortFloatMap
ImmutableFloatShortEmptyMap. flipUniqueValues()
ImmutableShortFloatMap
ImmutableFloatShortHashMap. flipUniqueValues()
ImmutableShortFloatMap
ImmutableFloatShortSingletonMap. flipUniqueValues()
<T> ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. newWithKeyValue(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatHashMap. newWithKeyValue(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. newWithKeyValue(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortFloatMap
ImmutableShortFloatHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. newWithoutKey(short key)
ImmutableShortFloatMap
ImmutableShortFloatHashMap. newWithoutKey(short key)
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. newWithoutKey(short key)
ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. of()
ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. of(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. ofAll(ShortFloatMap map)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. reject(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatHashMap. reject(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. reject(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. select(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatHashMap. select(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. select(ShortFloatPredicate predicate)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. toImmutable()
ImmutableShortFloatMap
ImmutableShortFloatHashMap. toImmutable()
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. toImmutable()
ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. with()
ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. with(short key, float value)
ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. withAll(ShortFloatMap map)
-
Uses of ImmutableShortFloatMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableShortFloatMap Modifier and Type Method Description ImmutableShortFloatMap
ShortFloatHashMap. toImmutable()
ImmutableShortFloatMap
SynchronizedShortFloatMap. toImmutable()
ImmutableShortFloatMap
UnmodifiableShortFloatMap. toImmutable()
-