Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatObjectMap
-
Packages that use MutableFloatObjectMap 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 MutableFloatObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatObjectMap Modifier and Type Method Description <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().<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(). -
Uses of MutableFloatObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatObjectMap Modifier and Type Method Description MutableFloatObjectMap<V>MutableFloatObjectMap. 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<V>MutableFloatObjectMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatObjectMap<K>MutableObjectFloatMap. flipUniqueValues()MutableFloatObjectMap<V>MutableFloatObjectMap. reject(FloatObjectPredicate<? super V> predicate)MutableFloatObjectMap<V>MutableFloatObjectMap. select(FloatObjectPredicate<? super V> predicate)MutableFloatObjectMap<V>MutableFloatObjectMap. tap(Procedure<? super V> procedure)default MutableFloatObjectMap<V>MutableFloatObjectMap. withAllKeyValues(Iterable<FloatObjectPair<V>> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableFloatObjectMap<V>MutableFloatObjectMap. withKeyValue(float key, V value)Associates a value with the specified key.MutableFloatObjectMap<V>MutableFloatObjectMap. withoutAllKeys(FloatIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatObjectMap<V>MutableFloatObjectMap. withoutKey(float key)Removes the mapping associated with the key, if one exists, from this map.
-