Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatShortMap
-
Packages that use ImmutableFloatShortMap 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 ImmutableFloatShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatShortMap Modifier and Type Method Description ImmutableFloatShortMap
ImmutableFloatShortMapFactory. empty()
<T> ImmutableFloatShortMap
ImmutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatShortMap
ImmutableFloatShortMapFactory. of()
ImmutableFloatShortMap
ImmutableFloatShortMapFactory. of(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortMapFactory. ofAll(FloatShortMap map)
ImmutableFloatShortMap
ImmutableFloatShortMapFactory. with()
ImmutableFloatShortMap
ImmutableFloatShortMapFactory. with(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortMapFactory. withAll(FloatShortMap map)
-
Uses of ImmutableFloatShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatShortMap Modifier and Type Method Description ImmutableFloatShortMap
ImmutableShortFloatMap. flipUniqueValues()
ImmutableFloatShortMap
ImmutableFloatShortMap. newWithKeyValue(float key, short 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.ImmutableFloatShortMap
ImmutableFloatShortMap. newWithoutAllKeys(FloatIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableFloatShortMap
ImmutableFloatShortMap. newWithoutKey(float key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableFloatShortMap
ImmutableFloatShortMap. reject(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortMap. select(FloatShortPredicate predicate)
ImmutableFloatShortMap
FloatShortMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatShortMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatShortMap Modifier and Type Class Description (package private) class
ImmutableFloatShortEmptyMap
ImmutableFloatShortEmptyMap is an optimization forImmutableFloatShortMap
of size 0.(package private) class
ImmutableFloatShortHashMap
ImmutableFloatShortHashMap is the non-modifiable equivalent ofFloatShortHashMap
.(package private) class
ImmutableFloatShortSingletonMap
ImmutableFloatShortSingletonMap is an optimization forImmutableFloatShortMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatShortMap Modifier and Type Field Description (package private) static ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatShortMap Modifier and Type Method Description ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. empty()
ImmutableFloatShortMap
ImmutableShortFloatEmptyMap. flipUniqueValues()
ImmutableFloatShortMap
ImmutableShortFloatHashMap. flipUniqueValues()
ImmutableFloatShortMap
ImmutableShortFloatSingletonMap. flipUniqueValues()
<T> ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. newWithKeyValue(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortHashMap. newWithKeyValue(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortSingletonMap. newWithKeyValue(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatShortMap
ImmutableFloatShortHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatShortMap
ImmutableFloatShortSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. newWithoutKey(float key)
ImmutableFloatShortMap
ImmutableFloatShortHashMap. newWithoutKey(float key)
ImmutableFloatShortMap
ImmutableFloatShortSingletonMap. newWithoutKey(float key)
ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. of()
ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. of(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. ofAll(FloatShortMap map)
ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. reject(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortHashMap. reject(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortSingletonMap. reject(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. select(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortHashMap. select(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortSingletonMap. select(FloatShortPredicate predicate)
ImmutableFloatShortMap
ImmutableFloatShortEmptyMap. toImmutable()
ImmutableFloatShortMap
ImmutableFloatShortHashMap. toImmutable()
ImmutableFloatShortMap
ImmutableFloatShortSingletonMap. toImmutable()
ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. with()
ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. with(float key, short value)
ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. withAll(FloatShortMap map)
-
Uses of ImmutableFloatShortMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatShortMap Modifier and Type Method Description ImmutableFloatShortMap
FloatShortHashMap. toImmutable()
ImmutableFloatShortMap
SynchronizedFloatShortMap. toImmutable()
ImmutableFloatShortMap
UnmodifiableFloatShortMap. toImmutable()
-