Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatObjectMap
Packages that use MutableFloatObjectMap
Package
Description
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 MutableFloatObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatObjectMapModifier and TypeMethodDescription<V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.empty()<T,V> MutableFloatObjectMap<V> MutableFloatObjectMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableFloatObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.of()Same asMutableFloatObjectMapFactory.empty().default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.of(float key, V value) default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.of(float key1, V value1, float key2, V value2) default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.of(float key1, V value1, float key2, V value2, float key3, V value3) default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.of(float key1, V value1, float key2, V value2, float key3, V value3, float key4, V value4) <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.ofAll(FloatObjectMap<? extends V> map) <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.ofInitialCapacity(int capacity) Same asMutableFloatObjectMapFactory.empty(). but takes in an initial capacity<V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.with()Same asMutableFloatObjectMapFactory.empty().default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.with(float key, V value) default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.with(float key1, V value1, float key2, V value2) default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.with(float key1, V value1, float key2, V value2, float key3, V value3) default <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.with(float key1, V value1, float key2, V value2, float key3, V value3, float key4, V value4) <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.withAll(FloatObjectMap<? extends V> map) <V> MutableFloatObjectMap<V>MutableFloatObjectMapFactory.withInitialCapacity(int capacity) Same asMutableFloatObjectMapFactory.empty(). but takes in an initial capacity -
Uses of MutableFloatObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatObjectMapModifier and TypeMethodDescriptionMutableFloatObjectMap.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.MutableFloatObjectMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableObjectFloatMap.flipUniqueValues()MutableFloatObjectMap.reject(FloatObjectPredicate<? super V> predicate) MutableFloatObjectMap.select(FloatObjectPredicate<? super V> predicate) default MutableFloatObjectMap<V>MutableFloatObjectMap.withAllKeyValues(Iterable<FloatObjectPair<V>> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatObjectMap.withKeyValue(float key, V value) Associates a value with the specified key.MutableFloatObjectMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatObjectMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map.