Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectFloatMap
-
Packages that use ImmutableObjectFloatMap 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. -
-
Uses of ImmutableObjectFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectFloatMap Modifier and Type Method Description <K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. empty()<T,K>
ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableObjectFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. of()<K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. of(K key, float value)<K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. ofAll(ObjectFloatMap<? extends K> map)<K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. with()<K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. with(K key, float value)<K> ImmutableObjectFloatMap<K>ImmutableObjectFloatMapFactory. withAll(ObjectFloatMap<? extends K> map) -
Uses of ImmutableObjectFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectFloatMap Modifier and Type Method Description ImmutableObjectFloatMap<V>ImmutableFloatObjectMap. flipUniqueValues()ImmutableObjectFloatMap<K>ImmutableObjectFloatMap. newWithKeyValue(K key, float 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.ImmutableObjectFloatMap<K>ImmutableObjectFloatMap. newWithoutAllKeys(Iterable<? extends K> keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectFloatMap<K>ImmutableObjectFloatMap. newWithoutKey(K key)Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectFloatMap<K>ImmutableObjectFloatMap. reject(ObjectFloatPredicate<? super K> predicate)ImmutableObjectFloatMap<K>ImmutableObjectFloatMap. select(ObjectFloatPredicate<? super K> predicate)default ImmutableObjectFloatMap<K>ImmutableObjectFloatMap. tap(FloatProcedure procedure)ImmutableObjectFloatMap<K>ObjectFloatMap. toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable.
-