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