Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableCharFloatMap
Packages that use ImmutableCharFloatMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of ImmutableCharFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionImmutableCharFloatMapFactory.empty()
ImmutableCharFloatMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharFloatMapFactory.of()
Same asImmutableCharFloatMapFactory.empty()
.ImmutableCharFloatMapFactory.of
(char key, float value) ImmutableCharFloatMapFactory.ofAll
(CharFloatMap map) ImmutableCharFloatMapFactory.with()
Same asImmutableCharFloatMapFactory.empty()
.ImmutableCharFloatMapFactory.with
(char key, float value) ImmutableCharFloatMapFactory.withAll
(CharFloatMap map) -
Uses of ImmutableCharFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionImmutableFloatCharMap.flipUniqueValues()
ImmutableCharFloatMap.newWithKeyValue
(char 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.ImmutableCharFloatMap.newWithoutAllKeys
(CharIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableCharFloatMap.newWithoutKey
(char key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableCharFloatMap.reject
(CharFloatPredicate predicate) ImmutableCharFloatMap.select
(CharFloatPredicate predicate) CharFloatMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableCharFloatMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableCharFloatMapModifier and TypeClassDescription(package private) final class
ImmutableCharFloatEmptyMap is an optimization forImmutableCharFloatMap
of size 0.(package private) final class
ImmutableCharFloatHashMap is the non-modifiable equivalent ofCharFloatHashMap
.(package private) final class
ImmutableCharFloatSingletonMap is an optimization forImmutableCharFloatMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableCharFloatMapModifier and TypeFieldDescription(package private) static final ImmutableCharFloatMap
ImmutableCharFloatEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionImmutableCharFloatMapFactoryImpl.empty()
ImmutableFloatCharEmptyMap.flipUniqueValues()
ImmutableFloatCharHashMap.flipUniqueValues()
ImmutableFloatCharSingletonMap.flipUniqueValues()
ImmutableCharFloatMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableCharFloatEmptyMap.newWithKeyValue
(char key, float value) ImmutableCharFloatHashMap.newWithKeyValue
(char key, float value) ImmutableCharFloatSingletonMap.newWithKeyValue
(char key, float value) ImmutableCharFloatEmptyMap.newWithoutAllKeys
(CharIterable keys) ImmutableCharFloatHashMap.newWithoutAllKeys
(CharIterable keys) ImmutableCharFloatSingletonMap.newWithoutAllKeys
(CharIterable keys) ImmutableCharFloatEmptyMap.newWithoutKey
(char key) ImmutableCharFloatHashMap.newWithoutKey
(char key) ImmutableCharFloatSingletonMap.newWithoutKey
(char key) ImmutableCharFloatMapFactoryImpl.of()
ImmutableCharFloatMapFactoryImpl.of
(char key, float value) ImmutableCharFloatMapFactoryImpl.ofAll
(CharFloatMap map) ImmutableCharFloatEmptyMap.reject
(CharFloatPredicate predicate) ImmutableCharFloatHashMap.reject
(CharFloatPredicate predicate) ImmutableCharFloatSingletonMap.reject
(CharFloatPredicate predicate) ImmutableCharFloatEmptyMap.select
(CharFloatPredicate predicate) ImmutableCharFloatHashMap.select
(CharFloatPredicate predicate) ImmutableCharFloatSingletonMap.select
(CharFloatPredicate predicate) ImmutableCharFloatEmptyMap.toImmutable()
ImmutableCharFloatHashMap.toImmutable()
ImmutableCharFloatSingletonMap.toImmutable()
ImmutableCharFloatMapFactoryImpl.with()
ImmutableCharFloatMapFactoryImpl.with
(char key, float value) ImmutableCharFloatMapFactoryImpl.withAll
(CharFloatMap map) -
Uses of ImmutableCharFloatMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableCharFloatMapModifier and TypeMethodDescriptionCharFloatHashMap.toImmutable()
SynchronizedCharFloatMap.toImmutable()
UnmodifiableCharFloatMap.toImmutable()