Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatBooleanMap
-
Packages that use ImmutableFloatBooleanMap 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.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.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 ImmutableFloatBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatBooleanMap Modifier and Type Method Description ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. empty()
<T> ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableFloatBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. of()
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. of(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. ofAll(FloatBooleanMap map)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. with()
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. with(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactory. withAll(FloatBooleanMap map)
-
Uses of ImmutableFloatBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatBooleanMap Modifier and Type Method Description ImmutableFloatBooleanMap
ImmutableFloatBooleanMap. newWithKeyValue(float key, boolean 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.ImmutableFloatBooleanMap
ImmutableFloatBooleanMap. 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.ImmutableFloatBooleanMap
ImmutableFloatBooleanMap. 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.ImmutableFloatBooleanMap
ImmutableFloatBooleanMap. reject(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMap. select(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
FloatBooleanMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatBooleanMap Modifier and Type Class Description (package private) class
ImmutableFloatBooleanEmptyMap
ImmutableFloatBooleanEmptyMap is an optimization forImmutableFloatBooleanMap
of size 0.(package private) class
ImmutableFloatBooleanHashMap
ImmutableFloatBooleanHashMap is the non-modifiable equivalent ofFloatBooleanHashMap
.(package private) class
ImmutableFloatBooleanSingletonMap
ImmutableFloatBooleanSingletonMap is an optimization forImmutableFloatBooleanMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatBooleanMap Modifier and Type Field Description (package private) static ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatBooleanMap Modifier and Type Method Description ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. empty()
<T> ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. newWithKeyValue(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanHashMap. newWithKeyValue(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanSingletonMap. newWithKeyValue(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatBooleanMap
ImmutableFloatBooleanHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatBooleanMap
ImmutableFloatBooleanSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. newWithoutKey(float key)
ImmutableFloatBooleanMap
ImmutableFloatBooleanHashMap. newWithoutKey(float key)
ImmutableFloatBooleanMap
ImmutableFloatBooleanSingletonMap. newWithoutKey(float key)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. of()
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. of(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. ofAll(FloatBooleanMap map)
ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. reject(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanHashMap. reject(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanSingletonMap. reject(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. select(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanHashMap. select(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanSingletonMap. select(FloatBooleanPredicate predicate)
ImmutableFloatBooleanMap
ImmutableFloatBooleanEmptyMap. toImmutable()
ImmutableFloatBooleanMap
ImmutableFloatBooleanHashMap. toImmutable()
ImmutableFloatBooleanMap
ImmutableFloatBooleanSingletonMap. toImmutable()
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. with()
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. with(float key, boolean value)
ImmutableFloatBooleanMap
ImmutableFloatBooleanMapFactoryImpl. withAll(FloatBooleanMap map)
-
Uses of ImmutableFloatBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatBooleanMap Modifier and Type Method Description ImmutableFloatBooleanMap
FloatBooleanHashMap. toImmutable()
ImmutableFloatBooleanMap
SynchronizedFloatBooleanMap. toImmutable()
ImmutableFloatBooleanMap
UnmodifiableFloatBooleanMap. toImmutable()
-