Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatCharMap
-
Packages that use ImmutableFloatCharMap 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 ImmutableFloatCharMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatCharMap Modifier and Type Method Description ImmutableFloatCharMap
ImmutableFloatCharMapFactory. empty()
<T> ImmutableFloatCharMap
ImmutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatCharMap
ImmutableFloatCharMapFactory. of()
Same asImmutableFloatCharMapFactory.empty()
.ImmutableFloatCharMap
ImmutableFloatCharMapFactory. of(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharMapFactory. ofAll(FloatCharMap map)
ImmutableFloatCharMap
ImmutableFloatCharMapFactory. with()
Same asImmutableFloatCharMapFactory.empty()
.ImmutableFloatCharMap
ImmutableFloatCharMapFactory. with(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharMapFactory. withAll(FloatCharMap map)
-
Uses of ImmutableFloatCharMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatCharMap Modifier and Type Method Description ImmutableFloatCharMap
ImmutableCharFloatMap. flipUniqueValues()
ImmutableFloatCharMap
ImmutableFloatCharMap. newWithKeyValue(float key, char 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.ImmutableFloatCharMap
ImmutableFloatCharMap. 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.ImmutableFloatCharMap
ImmutableFloatCharMap. 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.ImmutableFloatCharMap
ImmutableFloatCharMap. reject(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharMap. select(FloatCharPredicate predicate)
ImmutableFloatCharMap
FloatCharMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatCharMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatCharMap Modifier and Type Class Description (package private) class
ImmutableFloatCharEmptyMap
ImmutableFloatCharEmptyMap is an optimization forImmutableFloatCharMap
of size 0.(package private) class
ImmutableFloatCharHashMap
ImmutableFloatCharHashMap is the non-modifiable equivalent ofFloatCharHashMap
.(package private) class
ImmutableFloatCharSingletonMap
ImmutableFloatCharSingletonMap is an optimization forImmutableFloatCharMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatCharMap Modifier and Type Field Description (package private) static ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatCharMap Modifier and Type Method Description ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. empty()
ImmutableFloatCharMap
ImmutableCharFloatEmptyMap. flipUniqueValues()
ImmutableFloatCharMap
ImmutableCharFloatHashMap. flipUniqueValues()
ImmutableFloatCharMap
ImmutableCharFloatSingletonMap. flipUniqueValues()
<T> ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. newWithKeyValue(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharHashMap. newWithKeyValue(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharSingletonMap. newWithKeyValue(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatCharMap
ImmutableFloatCharHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatCharMap
ImmutableFloatCharSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. newWithoutKey(float key)
ImmutableFloatCharMap
ImmutableFloatCharHashMap. newWithoutKey(float key)
ImmutableFloatCharMap
ImmutableFloatCharSingletonMap. newWithoutKey(float key)
ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. of()
ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. of(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. ofAll(FloatCharMap map)
ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. reject(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharHashMap. reject(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharSingletonMap. reject(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. select(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharHashMap. select(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharSingletonMap. select(FloatCharPredicate predicate)
ImmutableFloatCharMap
ImmutableFloatCharEmptyMap. toImmutable()
ImmutableFloatCharMap
ImmutableFloatCharHashMap. toImmutable()
ImmutableFloatCharMap
ImmutableFloatCharSingletonMap. toImmutable()
ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. with()
ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. with(float key, char value)
ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. withAll(FloatCharMap map)
-
Uses of ImmutableFloatCharMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatCharMap Modifier and Type Method Description ImmutableFloatCharMap
FloatCharHashMap. toImmutable()
ImmutableFloatCharMap
SynchronizedFloatCharMap. toImmutable()
ImmutableFloatCharMap
UnmodifiableFloatCharMap. toImmutable()
-