Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatCharMap
Packages that use MutableFloatCharMap
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 MutableFloatCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatCharMapModifier and TypeMethodDescriptionMutableFloatCharMapFactory.empty()MutableFloatCharMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatCharMapFactory.of()Same asMutableFloatCharMapFactory.empty().default MutableFloatCharMapMutableFloatCharMapFactory.of(float key, char value) default MutableFloatCharMapMutableFloatCharMapFactory.of(float key1, char value1, float key2, char value2) default MutableFloatCharMapMutableFloatCharMapFactory.of(float key1, char value1, float key2, char value2, float key3, char value3) default MutableFloatCharMapMutableFloatCharMapFactory.of(float key1, char value1, float key2, char value2, float key3, char value3, float key4, char value4) MutableFloatCharMapFactory.ofAll(FloatCharMap map) MutableFloatCharMapFactory.ofInitialCapacity(int capacity) Same asMutableFloatCharMapFactory.empty().MutableFloatCharMapFactory.with()Same asMutableFloatCharMapFactory.empty().default MutableFloatCharMapMutableFloatCharMapFactory.with(float key, char value) default MutableFloatCharMapMutableFloatCharMapFactory.with(float key1, char value1, float key2, char value2) default MutableFloatCharMapMutableFloatCharMapFactory.with(float key1, char value1, float key2, char value2, float key3, char value3) default MutableFloatCharMapMutableFloatCharMapFactory.with(float key1, char value1, float key2, char value2, float key3, char value3, float key4, char value4) MutableFloatCharMapFactory.withAll(FloatCharMap map) MutableFloatCharMapFactory.withInitialCapacity(int capacity) Same asMutableFloatCharMapFactory.empty(). -
Uses of MutableFloatCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatCharMapModifier and TypeMethodDescriptionMutableFloatCharMap.asSynchronized()Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableFloatCharMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharFloatMap.flipUniqueValues()MutableFloatCharMap.reject(FloatCharPredicate predicate) MutableFloatCharMap.select(FloatCharPredicate predicate) default MutableFloatCharMapMutableFloatCharMap.withAllKeyValues(Iterable<FloatCharPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatCharMap.withKeyValue(float key, char value) Associates a value with the specified key.MutableFloatCharMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatCharMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableFloatCharMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableFloatCharMapModifier and TypeFieldDescriptionprivate final MutableFloatCharMapImmutableFloatCharHashMap.delegate -
Uses of MutableFloatCharMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableFloatCharMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableFloatCharMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableFloatCharMapModifier and TypeFieldDescriptionprivate final MutableFloatCharMapSynchronizedFloatCharMap.mapprivate final MutableFloatCharMapUnmodifiableFloatCharMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableFloatCharMapModifier and TypeMethodDescriptionFloatCharHashMap.asSynchronized()SynchronizedFloatCharMap.asSynchronized()UnmodifiableFloatCharMap.asSynchronized()FloatCharHashMap.asUnmodifiable()SynchronizedFloatCharMap.asUnmodifiable()UnmodifiableFloatCharMap.asUnmodifiable()MutableFloatCharMapFactoryImpl.empty()CharFloatHashMap.flipUniqueValues()SynchronizedCharFloatMap.flipUniqueValues()UnmodifiableCharFloatMap.flipUniqueValues()MutableFloatCharMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableFloatCharMapFactoryImpl.of()MutableFloatCharMapFactoryImpl.of(float key, char value) MutableFloatCharMapFactoryImpl.of(float key1, char value1, float key2, char value2) MutableFloatCharMapFactoryImpl.of(float key1, char value1, float key2, char value2, float key3, char value3) MutableFloatCharMapFactoryImpl.of(float key1, char value1, float key2, char value2, float key3, char value3, float key4, char value4) MutableFloatCharMapFactoryImpl.ofAll(FloatCharMap map) MutableFloatCharMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedFloatCharMap.reject(FloatCharPredicate predicate) UnmodifiableFloatCharMap.reject(FloatCharPredicate predicate) SynchronizedFloatCharMap.select(FloatCharPredicate predicate) UnmodifiableFloatCharMap.select(FloatCharPredicate predicate) MutableFloatCharMapFactoryImpl.with()MutableFloatCharMapFactoryImpl.with(float key, char value) MutableFloatCharMapFactoryImpl.with(float key1, char value1, float key2, char value2) MutableFloatCharMapFactoryImpl.with(float key1, char value1, float key2, char value2, float key3, char value3) MutableFloatCharMapFactoryImpl.with(float key1, char value1, float key2, char value2, float key3, char value3, float key4, char value4) MutableFloatCharMapFactoryImpl.withAll(FloatCharMap map) MutableFloatCharMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedFloatCharMap.withKeyValue(float key, char value) UnmodifiableFloatCharMap.withKeyValue(float key, char value) SynchronizedFloatCharMap.withoutAllKeys(FloatIterable keys) UnmodifiableFloatCharMap.withoutAllKeys(FloatIterable keys) SynchronizedFloatCharMap.withoutKey(float key) UnmodifiableFloatCharMap.withoutKey(float key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableFloatCharMap