Uses of Interface
org.eclipse.collections.api.map.primitive.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.
|
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
-
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().MutableCharFloatMapMutableCharFloatMapFactory. ofAll(CharFloatMap map)MutableCharFloatMapMutableCharFloatMapFactory. ofInitialCapacity(int capacity)Same asMutableCharFloatMapFactory.empty().MutableCharFloatMapMutableCharFloatMapFactory. with()Same asMutableCharFloatMapFactory.empty().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. -
Uses of MutableCharFloatMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharFloatMap Modifier and Type Class Description classCharFloatHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedCharFloatMapA synchronized view of aMutableCharFloatMap.classUnmodifiableCharFloatMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharFloatMap Modifier and Type Method Description MutableCharFloatMapCharFloatHashMap. asSynchronized()MutableCharFloatMapSynchronizedCharFloatMap. asSynchronized()MutableCharFloatMapUnmodifiableCharFloatMap. asSynchronized()MutableCharFloatMapCharFloatHashMap. asUnmodifiable()MutableCharFloatMapSynchronizedCharFloatMap. asUnmodifiable()MutableCharFloatMapUnmodifiableCharFloatMap. asUnmodifiable()MutableCharFloatMapMutableCharFloatMapFactoryImpl. empty()MutableCharFloatMapFloatCharHashMap. flipUniqueValues()MutableCharFloatMapSynchronizedFloatCharMap. flipUniqueValues()MutableCharFloatMapUnmodifiableFloatCharMap. flipUniqueValues()<T> MutableCharFloatMapMutableCharFloatMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)MutableCharFloatMapMutableCharFloatMapFactoryImpl. of()MutableCharFloatMapMutableCharFloatMapFactoryImpl. ofAll(CharFloatMap map)MutableCharFloatMapMutableCharFloatMapFactoryImpl. ofInitialCapacity(int capacity)MutableCharFloatMapSynchronizedCharFloatMap. reject(CharFloatPredicate predicate)MutableCharFloatMapUnmodifiableCharFloatMap. reject(CharFloatPredicate predicate)MutableCharFloatMapSynchronizedCharFloatMap. select(CharFloatPredicate predicate)MutableCharFloatMapUnmodifiableCharFloatMap. select(CharFloatPredicate predicate)MutableCharFloatMapMutableCharFloatMapFactoryImpl. with()MutableCharFloatMapMutableCharFloatMapFactoryImpl. withAll(CharFloatMap map)MutableCharFloatMapMutableCharFloatMapFactoryImpl. withInitialCapacity(int capacity)MutableCharFloatMapSynchronizedCharFloatMap. withKeyValue(char key, float value)MutableCharFloatMapUnmodifiableCharFloatMap. withKeyValue(char key, float value)MutableCharFloatMapSynchronizedCharFloatMap. withoutAllKeys(CharIterable keys)MutableCharFloatMapUnmodifiableCharFloatMap. withoutAllKeys(CharIterable keys)MutableCharFloatMapSynchronizedCharFloatMap. withoutKey(char key)MutableCharFloatMapUnmodifiableCharFloatMap. withoutKey(char key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharFloatMap Constructor Description SynchronizedCharFloatMap(MutableCharFloatMap map)SynchronizedCharFloatMap(MutableCharFloatMap map, Object newLock)UnmodifiableCharFloatMap(MutableCharFloatMap map)