Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatCharMap
Packages that use ImmutableFloatCharMap
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 ImmutableFloatCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatCharMapModifier and TypeMethodDescriptionImmutableFloatCharMapFactory.empty()ImmutableFloatCharMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatCharMapFactory.of()Same asImmutableFloatCharMapFactory.empty().ImmutableFloatCharMapFactory.of(float key, char value) ImmutableFloatCharMapFactory.ofAll(FloatCharMap map) ImmutableFloatCharMapFactory.with()Same asImmutableFloatCharMapFactory.empty().ImmutableFloatCharMapFactory.with(float key, char value) ImmutableFloatCharMapFactory.withAll(FloatCharMap map) -
Uses of ImmutableFloatCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatCharMapModifier and TypeMethodDescriptionImmutableCharFloatMap.flipUniqueValues()ImmutableFloatCharMap.newWithKeyValue(float key, char 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.ImmutableFloatCharMap.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.ImmutableFloatCharMap.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.ImmutableFloatCharMap.reject(FloatCharPredicate predicate) ImmutableFloatCharMap.select(FloatCharPredicate predicate) FloatCharMap.toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatCharMapModifier and TypeClassDescription(package private) final classImmutableFloatCharEmptyMap is an optimization forImmutableFloatCharMapof size 0.(package private) final classImmutableFloatCharHashMap is the non-modifiable equivalent ofFloatCharHashMap.(package private) final classImmutableFloatCharSingletonMap is an optimization forImmutableFloatCharMapof size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatCharMapModifier and TypeFieldDescription(package private) static final ImmutableFloatCharMapImmutableFloatCharEmptyMap.INSTANCEMethods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatCharMapModifier and TypeMethodDescriptionImmutableFloatCharMapFactoryImpl.empty()ImmutableCharFloatEmptyMap.flipUniqueValues()ImmutableCharFloatHashMap.flipUniqueValues()ImmutableCharFloatSingletonMap.flipUniqueValues()ImmutableFloatCharMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableFloatCharEmptyMap.newWithKeyValue(float key, char value) ImmutableFloatCharHashMap.newWithKeyValue(float key, char value) ImmutableFloatCharSingletonMap.newWithKeyValue(float key, char value) ImmutableFloatCharEmptyMap.newWithoutAllKeys(FloatIterable keys) ImmutableFloatCharHashMap.newWithoutAllKeys(FloatIterable keys) ImmutableFloatCharSingletonMap.newWithoutAllKeys(FloatIterable keys) ImmutableFloatCharEmptyMap.newWithoutKey(float key) ImmutableFloatCharHashMap.newWithoutKey(float key) ImmutableFloatCharSingletonMap.newWithoutKey(float key) ImmutableFloatCharMapFactoryImpl.of()ImmutableFloatCharMapFactoryImpl.of(float key, char value) ImmutableFloatCharMapFactoryImpl.ofAll(FloatCharMap map) ImmutableFloatCharEmptyMap.reject(FloatCharPredicate predicate) ImmutableFloatCharHashMap.reject(FloatCharPredicate predicate) ImmutableFloatCharSingletonMap.reject(FloatCharPredicate predicate) ImmutableFloatCharEmptyMap.select(FloatCharPredicate predicate) ImmutableFloatCharHashMap.select(FloatCharPredicate predicate) ImmutableFloatCharSingletonMap.select(FloatCharPredicate predicate) ImmutableFloatCharEmptyMap.toImmutable()ImmutableFloatCharHashMap.toImmutable()ImmutableFloatCharSingletonMap.toImmutable()ImmutableFloatCharMapFactoryImpl.with()ImmutableFloatCharMapFactoryImpl.with(float key, char value) ImmutableFloatCharMapFactoryImpl.withAll(FloatCharMap map) -
Uses of ImmutableFloatCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatCharMapModifier and TypeMethodDescriptionFloatCharHashMap.toImmutable()SynchronizedFloatCharMap.toImmutable()UnmodifiableFloatCharMap.toImmutable()