Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharFloatMap
-
Packages that use MutableCharFloatMap 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 MutableCharFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharFloatMap Modifier and Type Method Description MutableCharFloatMapMutableCharFloatMapFactory. empty()<T> MutableCharFloatMapMutableCharFloatMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharFloatMapMutableCharFloatMapFactory. of()Same asMutableCharFloatMapFactory.empty().default MutableCharFloatMapMutableCharFloatMapFactory. of(char key, float value)default MutableCharFloatMapMutableCharFloatMapFactory. of(char key1, float value1, char key2, float value2)default MutableCharFloatMapMutableCharFloatMapFactory. of(char key1, float value1, char key2, float value2, char key3, float value3)default MutableCharFloatMapMutableCharFloatMapFactory. of(char key1, float value1, char key2, float value2, char key3, float value3, char key4, float value4)MutableCharFloatMapMutableCharFloatMapFactory. ofAll(CharFloatMap map)MutableCharFloatMapMutableCharFloatMapFactory. ofInitialCapacity(int capacity)Same asMutableCharFloatMapFactory.empty().MutableCharFloatMapMutableCharFloatMapFactory. with()Same asMutableCharFloatMapFactory.empty().default MutableCharFloatMapMutableCharFloatMapFactory. with(char key, float value)default MutableCharFloatMapMutableCharFloatMapFactory. with(char key1, float value1, char key2, float value2)default MutableCharFloatMapMutableCharFloatMapFactory. with(char key1, float value1, char key2, float value2, char key3, float value3)default MutableCharFloatMapMutableCharFloatMapFactory. with(char key1, float value1, char key2, float value2, char key3, float value3, char key4, float value4)MutableCharFloatMapMutableCharFloatMapFactory. withAll(CharFloatMap map)MutableCharFloatMapMutableCharFloatMapFactory. withInitialCapacity(int capacity)Same asMutableCharFloatMapFactory.empty(). -
Uses of MutableCharFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharFloatMap Modifier and Type Method Description MutableCharFloatMapMutableCharFloatMap. 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.MutableCharFloatMapMutableCharFloatMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableCharFloatMapMutableFloatCharMap. flipUniqueValues()MutableCharFloatMapMutableCharFloatMap. reject(CharFloatPredicate predicate)MutableCharFloatMapMutableCharFloatMap. select(CharFloatPredicate predicate)default MutableCharFloatMapMutableCharFloatMap. withAllKeyValues(Iterable<CharFloatPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableCharFloatMapMutableCharFloatMap. withKeyValue(char key, float value)Associates a value with the specified key.MutableCharFloatMapMutableCharFloatMap. withoutAllKeys(CharIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableCharFloatMapMutableCharFloatMap. withoutKey(char key)Removes the mapping associated with the key, if one exists, from this map.
-