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 MutableFloatBooleanMap
MutableFloatBooleanMapFactory. empty()
<T> MutableFloatBooleanMap
MutableFloatBooleanMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableFloatBooleanMap
MutableFloatBooleanMapFactory. of()
MutableFloatBooleanMap
MutableFloatBooleanMapFactory. ofAll(FloatBooleanMap map)
MutableFloatBooleanMap
MutableFloatBooleanMapFactory. ofInitialCapacity(int capacity)
MutableFloatBooleanMap
MutableFloatBooleanMapFactory. with()
MutableFloatBooleanMap
MutableFloatBooleanMapFactory. withAll(FloatBooleanMap map)
MutableFloatBooleanMap
MutableFloatBooleanMapFactory. 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 MutableFloatBooleanMap
MutableFloatBooleanMap. 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
MutableFloatBooleanMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableFloatBooleanMap
MutableFloatBooleanMap. reject(FloatBooleanPredicate predicate)
MutableFloatBooleanMap
MutableFloatBooleanMap. select(FloatBooleanPredicate predicate)
default MutableFloatBooleanMap
MutableFloatBooleanMap. withAllKeyValues(Iterable<FloatBooleanPair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableFloatBooleanMap
MutableFloatBooleanMap. withKeyValue(float key, boolean value)
Associates a value with the specified key.MutableFloatBooleanMap
MutableFloatBooleanMap. withoutAllKeys(FloatIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatBooleanMap
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.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableFloatBooleanMap Modifier and Type Class Description class
FloatBooleanHashMap
This file was automatically generated from template file primitiveBooleanHashMap.stg.class
SynchronizedFloatBooleanMap
A synchronized view of aMutableFloatBooleanMap
.class
UnmodifiableFloatBooleanMap
This 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 MutableFloatBooleanMap
FloatBooleanHashMap. asSynchronized()
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. asSynchronized()
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. asSynchronized()
MutableFloatBooleanMap
FloatBooleanHashMap. asUnmodifiable()
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. asUnmodifiable()
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. asUnmodifiable()
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. empty()
<T> MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. of()
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. ofAll(FloatBooleanMap map)
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. ofInitialCapacity(int capacity)
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. reject(FloatBooleanPredicate predicate)
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. reject(FloatBooleanPredicate predicate)
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. select(FloatBooleanPredicate predicate)
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. select(FloatBooleanPredicate predicate)
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. with()
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. withAll(FloatBooleanMap map)
MutableFloatBooleanMap
MutableFloatBooleanMapFactoryImpl. withInitialCapacity(int capacity)
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. withKeyValue(float key, boolean value)
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. withKeyValue(float key, boolean value)
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. withoutAllKeys(FloatIterable keys)
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. withoutAllKeys(FloatIterable keys)
MutableFloatBooleanMap
SynchronizedFloatBooleanMap. withoutKey(float key)
MutableFloatBooleanMap
UnmodifiableFloatBooleanMap. 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)