Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatBooleanMap
Packages that use MutableFloatBooleanMap
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 MutableFloatBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatBooleanMapModifier and TypeMethodDescriptionMutableFloatBooleanMapFactory.empty()MutableFloatBooleanMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatBooleanMapFactory.of()default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key, boolean value) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key1, boolean value1, float key2, boolean value2) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) MutableFloatBooleanMapFactory.ofAll(FloatBooleanMap map) MutableFloatBooleanMapFactory.ofInitialCapacity(int capacity) MutableFloatBooleanMapFactory.with()default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key, boolean value) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key1, boolean value1, float key2, boolean value2) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) MutableFloatBooleanMapFactory.withAll(FloatBooleanMap map) MutableFloatBooleanMapFactory.withInitialCapacity(int capacity) -
Uses of MutableFloatBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatBooleanMapModifier and TypeMethodDescriptionMutableFloatBooleanMap.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.MutableFloatBooleanMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatBooleanMap.reject(FloatBooleanPredicate predicate) MutableFloatBooleanMap.select(FloatBooleanPredicate predicate) default MutableFloatBooleanMapMutableFloatBooleanMap.withAllKeyValues(Iterable<FloatBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatBooleanMap.withKeyValue(float key, boolean value) Associates a value with the specified key.MutableFloatBooleanMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatBooleanMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableFloatBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableFloatBooleanMapModifier and TypeFieldDescriptionprivate final MutableFloatBooleanMapImmutableFloatBooleanHashMap.delegate -
Uses of MutableFloatBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableFloatBooleanMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveBooleanHashMap.stg.classA synchronized view of aMutableFloatBooleanMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableFloatBooleanMapModifier and TypeFieldDescriptionprivate final MutableFloatBooleanMapSynchronizedFloatBooleanMap.mapprivate final MutableFloatBooleanMapUnmodifiableFloatBooleanMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableFloatBooleanMapModifier and TypeMethodDescriptionFloatBooleanHashMap.asSynchronized()SynchronizedFloatBooleanMap.asSynchronized()UnmodifiableFloatBooleanMap.asSynchronized()FloatBooleanHashMap.asUnmodifiable()SynchronizedFloatBooleanMap.asUnmodifiable()UnmodifiableFloatBooleanMap.asUnmodifiable()MutableFloatBooleanMapFactoryImpl.empty()MutableFloatBooleanMapFactoryImpl.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableFloatBooleanMapFactoryImpl.of()MutableFloatBooleanMapFactoryImpl.of(float key, boolean value) MutableFloatBooleanMapFactoryImpl.of(float key1, boolean value1, float key2, boolean value2) MutableFloatBooleanMapFactoryImpl.of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) MutableFloatBooleanMapFactoryImpl.of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) MutableFloatBooleanMapFactoryImpl.ofAll(FloatBooleanMap map) MutableFloatBooleanMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedFloatBooleanMap.reject(FloatBooleanPredicate predicate) UnmodifiableFloatBooleanMap.reject(FloatBooleanPredicate predicate) SynchronizedFloatBooleanMap.select(FloatBooleanPredicate predicate) UnmodifiableFloatBooleanMap.select(FloatBooleanPredicate predicate) MutableFloatBooleanMapFactoryImpl.with()MutableFloatBooleanMapFactoryImpl.with(float key, boolean value) MutableFloatBooleanMapFactoryImpl.with(float key1, boolean value1, float key2, boolean value2) MutableFloatBooleanMapFactoryImpl.with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) MutableFloatBooleanMapFactoryImpl.with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) MutableFloatBooleanMapFactoryImpl.withAll(FloatBooleanMap map) MutableFloatBooleanMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedFloatBooleanMap.withKeyValue(float key, boolean value) UnmodifiableFloatBooleanMap.withKeyValue(float key, boolean value) SynchronizedFloatBooleanMap.withoutAllKeys(FloatIterable keys) UnmodifiableFloatBooleanMap.withoutAllKeys(FloatIterable keys) SynchronizedFloatBooleanMap.withoutKey(float key) UnmodifiableFloatBooleanMap.withoutKey(float key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableFloatBooleanMapModifierConstructorDescriptionSynchronizedFloatBooleanMap(MutableFloatBooleanMap map, Object newLock)