Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectFloatMap
-
Packages that use ImmutableObjectFloatMap 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 ImmutableObjectFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectFloatMap Modifier and Type Method Description <K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. empty()
<T,K>
ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableObjectFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. of()
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. of(K key, float value)
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. ofAll(ObjectFloatMap<? extends K> map)
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. with()
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. with(K key, float value)
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactory. withAll(ObjectFloatMap<? extends K> map)
-
Uses of ImmutableObjectFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectFloatMap Modifier and Type Method Description ImmutableObjectFloatMap<V>
ImmutableFloatObjectMap. flipUniqueValues()
ImmutableObjectFloatMap<K>
ImmutableObjectFloatMap. newWithKeyValue(K 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.ImmutableObjectFloatMap<K>
ImmutableObjectFloatMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectFloatMap<K>
ImmutableObjectFloatMap. newWithoutKey(K key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectFloatMap<K>
ImmutableObjectFloatMap. reject(ObjectFloatPredicate<? super K> predicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatMap. select(ObjectFloatPredicate<? super K> predicate)
default ImmutableObjectFloatMap<K>
ImmutableObjectFloatMap. tap(FloatProcedure procedure)
ImmutableObjectFloatMap<K>
ObjectFloatMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectFloatMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectFloatMap Modifier and Type Class Description class
AbstractImmutableObjectFloatMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectFloatEmptyMap<K>
ImmutableObjectFloatEmptyMap is an optimization forImmutableObjectFloatMap
of size 0.(package private) class
ImmutableObjectFloatHashMap<K>
ImmutableObjectFloatHashMap is the non-modifiable equivalent ofObjectFloatHashMap
.(package private) class
ImmutableObjectFloatSingletonMap<K>
ImmutableObjectFloatSingletonMap is an optimization forImmutableObjectFloatMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectFloatMap Modifier and Type Field Description (package private) static ImmutableObjectFloatMap<?>
ImmutableObjectFloatEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectFloatMap Modifier and Type Method Description <K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. empty()
ImmutableObjectFloatMap<V>
ImmutableFloatObjectEmptyMap. flipUniqueValues()
ImmutableObjectFloatMap<V>
ImmutableFloatObjectHashMap. flipUniqueValues()
ImmutableObjectFloatMap<V>
ImmutableFloatObjectSingletonMap. flipUniqueValues()
<T,K>
ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatEmptyMap. newWithKeyValue(K key, float value)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatHashMap. newWithKeyValue(K key, float value)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatSingletonMap. newWithKeyValue(K key, float value)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatEmptyMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatHashMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatSingletonMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatEmptyMap. newWithoutKey(K key)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatHashMap. newWithoutKey(K key)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatSingletonMap. newWithoutKey(K key)
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. of()
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. of(K key, float value)
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. ofAll(ObjectFloatMap<? extends K> map)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatEmptyMap. reject(ObjectFloatPredicate<? super K> objectFloatPredicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatHashMap. reject(ObjectFloatPredicate<? super K> objectFloatPredicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatSingletonMap. reject(ObjectFloatPredicate<? super K> objectFloatPredicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatEmptyMap. select(ObjectFloatPredicate<? super K> objectFloatPredicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatHashMap. select(ObjectFloatPredicate<? super K> objectFloatPredicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatSingletonMap. select(ObjectFloatPredicate<? super K> objectFloatPredicate)
ImmutableObjectFloatMap<K>
ImmutableObjectFloatEmptyMap. toImmutable()
ImmutableObjectFloatMap<K>
ImmutableObjectFloatHashMap. toImmutable()
ImmutableObjectFloatMap<K>
ImmutableObjectFloatSingletonMap. toImmutable()
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. with()
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. with(K key, float value)
<K> ImmutableObjectFloatMap<K>
ImmutableObjectFloatMapFactoryImpl. withAll(ObjectFloatMap<? extends K> map)
-
Uses of ImmutableObjectFloatMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectFloatMap Modifier and Type Method Description ImmutableObjectFloatMap<K>
ObjectFloatHashMap. toImmutable()
ImmutableObjectFloatMap<K>
ObjectFloatHashMapWithHashingStrategy. toImmutable()
ImmutableObjectFloatMap<K>
SynchronizedObjectFloatMap. toImmutable()
ImmutableObjectFloatMap<K>
UnmodifiableObjectFloatMap. toImmutable()
-