Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatBooleanMap
| 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.mutable.primitive |
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 MutableFloatBooleanMap Modifier and Type Method Description MutableFloatBooleanMapMutableFloatBooleanMapFactory. empty()<T> MutableFloatBooleanMapMutableFloatBooleanMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatBooleanMapMutableFloatBooleanMapFactory. of()MutableFloatBooleanMapMutableFloatBooleanMapFactory. ofAll(FloatBooleanMap map)MutableFloatBooleanMapMutableFloatBooleanMapFactory. ofInitialCapacity(int capacity)MutableFloatBooleanMapMutableFloatBooleanMapFactory. with()MutableFloatBooleanMapMutableFloatBooleanMapFactory. withAll(FloatBooleanMap map)MutableFloatBooleanMapMutableFloatBooleanMapFactory. withInitialCapacity(int capacity) -
Uses of MutableFloatBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatBooleanMap Modifier and Type Method Description MutableFloatBooleanMapMutableFloatBooleanMap. 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.MutableFloatBooleanMapMutableFloatBooleanMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatBooleanMapMutableFloatBooleanMap. reject(FloatBooleanPredicate predicate)MutableFloatBooleanMapMutableFloatBooleanMap. select(FloatBooleanPredicate predicate)default MutableFloatBooleanMapMutableFloatBooleanMap. withAllKeyValues(Iterable<FloatBooleanPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableFloatBooleanMapMutableFloatBooleanMap. withKeyValue(float key, boolean value)Associates a value with the specified key.MutableFloatBooleanMapMutableFloatBooleanMap. withoutAllKeys(FloatIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatBooleanMapMutableFloatBooleanMap. 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.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableFloatBooleanMap Modifier and Type Class Description classFloatBooleanHashMapThis file was automatically generated from template file primitiveBooleanHashMap.stg.classSynchronizedFloatBooleanMapA synchronized view of aMutableFloatBooleanMap.classUnmodifiableFloatBooleanMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableFloatBooleanMap Modifier and Type Method Description MutableFloatBooleanMapFloatBooleanHashMap. asSynchronized()MutableFloatBooleanMapSynchronizedFloatBooleanMap. asSynchronized()MutableFloatBooleanMapUnmodifiableFloatBooleanMap. asSynchronized()MutableFloatBooleanMapFloatBooleanHashMap. asUnmodifiable()MutableFloatBooleanMapSynchronizedFloatBooleanMap. asUnmodifiable()MutableFloatBooleanMapUnmodifiableFloatBooleanMap. asUnmodifiable()MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. empty()<T> MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. of()MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. ofAll(FloatBooleanMap map)MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. ofInitialCapacity(int capacity)MutableFloatBooleanMapSynchronizedFloatBooleanMap. reject(FloatBooleanPredicate predicate)MutableFloatBooleanMapUnmodifiableFloatBooleanMap. reject(FloatBooleanPredicate predicate)MutableFloatBooleanMapSynchronizedFloatBooleanMap. select(FloatBooleanPredicate predicate)MutableFloatBooleanMapUnmodifiableFloatBooleanMap. select(FloatBooleanPredicate predicate)MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. with()MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. withAll(FloatBooleanMap map)MutableFloatBooleanMapMutableFloatBooleanMapFactoryImpl. withInitialCapacity(int capacity)MutableFloatBooleanMapSynchronizedFloatBooleanMap. withKeyValue(float key, boolean value)MutableFloatBooleanMapUnmodifiableFloatBooleanMap. withKeyValue(float key, boolean value)MutableFloatBooleanMapSynchronizedFloatBooleanMap. withoutAllKeys(FloatIterable keys)MutableFloatBooleanMapUnmodifiableFloatBooleanMap. withoutAllKeys(FloatIterable keys)MutableFloatBooleanMapSynchronizedFloatBooleanMap. withoutKey(float key)MutableFloatBooleanMapUnmodifiableFloatBooleanMap. withoutKey(float key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableFloatBooleanMap Constructor Description SynchronizedFloatBooleanMap(MutableFloatBooleanMap map)SynchronizedFloatBooleanMap(MutableFloatBooleanMap map, Object newLock)UnmodifiableFloatBooleanMap(MutableFloatBooleanMap map)