Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableFloatLongMap
-
Packages that use ImmutableFloatLongMap 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 ImmutableFloatLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableFloatLongMap Modifier and Type Method Description ImmutableFloatLongMap
ImmutableFloatLongMapFactory. empty()
<T> ImmutableFloatLongMap
ImmutableFloatLongMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableFloatLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatLongMap
ImmutableFloatLongMapFactory. of()
Same asImmutableFloatLongMapFactory.empty()
.ImmutableFloatLongMap
ImmutableFloatLongMapFactory. of(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongMapFactory. ofAll(FloatLongMap map)
ImmutableFloatLongMap
ImmutableFloatLongMapFactory. with()
Same asImmutableFloatLongMapFactory.empty()
.ImmutableFloatLongMap
ImmutableFloatLongMapFactory. with(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongMapFactory. withAll(FloatLongMap map)
-
Uses of ImmutableFloatLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableFloatLongMap Modifier and Type Method Description ImmutableFloatLongMap
ImmutableLongFloatMap. flipUniqueValues()
ImmutableFloatLongMap
ImmutableFloatLongMap. newWithKeyValue(float key, long 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.ImmutableFloatLongMap
ImmutableFloatLongMap. 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.ImmutableFloatLongMap
ImmutableFloatLongMap. 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.ImmutableFloatLongMap
ImmutableFloatLongMap. reject(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongMap. select(FloatLongPredicate predicate)
ImmutableFloatLongMap
FloatLongMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableFloatLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableFloatLongMap Modifier and Type Class Description (package private) class
ImmutableFloatLongEmptyMap
ImmutableFloatLongEmptyMap is an optimization forImmutableFloatLongMap
of size 0.(package private) class
ImmutableFloatLongHashMap
ImmutableFloatLongHashMap is the non-modifiable equivalent ofFloatLongHashMap
.(package private) class
ImmutableFloatLongSingletonMap
ImmutableFloatLongSingletonMap is an optimization forImmutableFloatLongMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableFloatLongMap Modifier and Type Field Description (package private) static ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableFloatLongMap Modifier and Type Method Description ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. empty()
ImmutableFloatLongMap
ImmutableLongFloatEmptyMap. flipUniqueValues()
ImmutableFloatLongMap
ImmutableLongFloatHashMap. flipUniqueValues()
ImmutableFloatLongMap
ImmutableLongFloatSingletonMap. flipUniqueValues()
<T> ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. newWithKeyValue(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongHashMap. newWithKeyValue(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongSingletonMap. newWithKeyValue(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatLongMap
ImmutableFloatLongHashMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatLongMap
ImmutableFloatLongSingletonMap. newWithoutAllKeys(FloatIterable keys)
ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. newWithoutKey(float key)
ImmutableFloatLongMap
ImmutableFloatLongHashMap. newWithoutKey(float key)
ImmutableFloatLongMap
ImmutableFloatLongSingletonMap. newWithoutKey(float key)
ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. of()
ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. of(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. ofAll(FloatLongMap map)
ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. reject(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongHashMap. reject(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongSingletonMap. reject(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. select(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongHashMap. select(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongSingletonMap. select(FloatLongPredicate predicate)
ImmutableFloatLongMap
ImmutableFloatLongEmptyMap. toImmutable()
ImmutableFloatLongMap
ImmutableFloatLongHashMap. toImmutable()
ImmutableFloatLongMap
ImmutableFloatLongSingletonMap. toImmutable()
ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. with()
ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. with(float key, long value)
ImmutableFloatLongMap
ImmutableFloatLongMapFactoryImpl. withAll(FloatLongMap map)
-
Uses of ImmutableFloatLongMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableFloatLongMap Modifier and Type Method Description ImmutableFloatLongMap
FloatLongHashMap. toImmutable()
ImmutableFloatLongMap
SynchronizedFloatLongMap. toImmutable()
ImmutableFloatLongMap
UnmodifiableFloatLongMap. toImmutable()
-