Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatObjectMap
-
Packages that use ImmutableFloatObjectMap 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 ImmutableFloatObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatObjectMap Modifier and Type Method Description <V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. empty()
<T,V>
ImmutableFloatObjectMap<V>ImmutableFloatObjectMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableFloatObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. of()
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. of(float key, V value)
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. ofAll(FloatObjectMap<? extends V> map)
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. with()
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. with(float key, V value)
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactory. withAll(FloatObjectMap<? extends V> map)
-
Uses of ImmutableFloatObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatObjectMap Modifier and Type Method Description ImmutableFloatObjectMap<K>
ImmutableObjectFloatMap. flipUniqueValues()
ImmutableFloatObjectMap<V>
ImmutableFloatObjectMap. newWithKeyValue(float key, V 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.ImmutableFloatObjectMap<V>
ImmutableFloatObjectMap. 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.ImmutableFloatObjectMap<V>
ImmutableFloatObjectMap. 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.ImmutableFloatObjectMap<V>
ImmutableFloatObjectMap. reject(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectMap. select(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectMap. tap(Procedure<? super V> procedure)
ImmutableFloatObjectMap<V>
FloatObjectMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatObjectMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatObjectMap Modifier and Type Class Description class
AbstractImmutableFloatObjectMap<V>
This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.(package private) class
ImmutableFloatObjectEmptyMap<V>
ImmutableFloatObjectEmptyMap is an optimization forImmutableFloatObjectMap
of size 0.(package private) class
ImmutableFloatObjectHashMap<V>
ImmutableFloatObjectHashMap is the non-modifiable equivalent ofFloatObjectHashMap
.(package private) class
ImmutableFloatObjectSingletonMap<V>
ImmutableFloatObjectSingletonMap is an optimization forImmutableFloatObjectMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatObjectMap Modifier and Type Field Description (package private) static ImmutableFloatObjectMap<?>
ImmutableFloatObjectEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatObjectMap Modifier and Type Method Description <V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. empty()
ImmutableFloatObjectMap<K>
ImmutableObjectFloatEmptyMap. flipUniqueValues()
ImmutableFloatObjectMap<K>
ImmutableObjectFloatHashMap. flipUniqueValues()
ImmutableFloatObjectMap<K>
ImmutableObjectFloatSingletonMap. flipUniqueValues()
<T,V>
ImmutableFloatObjectMap<V>ImmutableFloatObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. newWithKeyValue(float key, V value)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. newWithKeyValue(float key, V value)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. newWithKeyValue(float key, V value)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. newWithoutKey(float key)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. newWithoutKey(float key)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. newWithoutKey(float key)
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. of()
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. of(float key, V value)
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. ofAll(FloatObjectMap<? extends V> map)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. reject(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. reject(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. reject(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. select(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. select(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. select(FloatObjectPredicate<? super V> predicate)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. tap(Procedure<? super V> procedure)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. tap(Procedure<? super V> procedure)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. tap(Procedure<? super V> procedure)
ImmutableFloatObjectMap<V>
ImmutableFloatObjectEmptyMap. toImmutable()
ImmutableFloatObjectMap<V>
ImmutableFloatObjectHashMap. toImmutable()
ImmutableFloatObjectMap<V>
ImmutableFloatObjectSingletonMap. toImmutable()
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. with()
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. with(float key, V value)
<V> ImmutableFloatObjectMap<V>
ImmutableFloatObjectMapFactoryImpl. withAll(FloatObjectMap<? extends V> map)
-
Uses of ImmutableFloatObjectMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatObjectMap Modifier and Type Method Description ImmutableFloatObjectMap<V>
FloatObjectHashMap. toImmutable()
ImmutableFloatObjectMap<V>
SynchronizedFloatObjectMap. toImmutable()
ImmutableFloatObjectMap<V>
UnmodifiableFloatObjectMap. toImmutable()
-