Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteFloatMap
Packages that use MutableByteFloatMap
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.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableByteFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteFloatMapModifier and TypeMethodDescriptionMutableByteFloatMapFactory.empty()MutableByteFloatMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableByteFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteFloatMapFactory.of()Same asMutableByteFloatMapFactory.empty().default MutableByteFloatMapMutableByteFloatMapFactory.of(byte key, float value) default MutableByteFloatMapMutableByteFloatMapFactory.of(byte key1, float value1, byte key2, float value2) default MutableByteFloatMapMutableByteFloatMapFactory.of(byte key1, float value1, byte key2, float value2, byte key3, float value3) default MutableByteFloatMapMutableByteFloatMapFactory.of(byte key1, float value1, byte key2, float value2, byte key3, float value3, byte key4, float value4) MutableByteFloatMapFactory.ofAll(ByteFloatMap map) MutableByteFloatMapFactory.ofInitialCapacity(int capacity) Same asMutableByteFloatMapFactory.empty().MutableByteFloatMapFactory.with()Same asMutableByteFloatMapFactory.empty().default MutableByteFloatMapMutableByteFloatMapFactory.with(byte key, float value) default MutableByteFloatMapMutableByteFloatMapFactory.with(byte key1, float value1, byte key2, float value2) default MutableByteFloatMapMutableByteFloatMapFactory.with(byte key1, float value1, byte key2, float value2, byte key3, float value3) default MutableByteFloatMapMutableByteFloatMapFactory.with(byte key1, float value1, byte key2, float value2, byte key3, float value3, byte key4, float value4) MutableByteFloatMapFactory.withAll(ByteFloatMap map) MutableByteFloatMapFactory.withInitialCapacity(int capacity) Same asMutableByteFloatMapFactory.empty(). -
Uses of MutableByteFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteFloatMapModifier and TypeMethodDescriptionMutableByteFloatMap.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.MutableByteFloatMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatByteMap.flipUniqueValues()MutableByteFloatMap.reject(ByteFloatPredicate predicate) MutableByteFloatMap.select(ByteFloatPredicate predicate) default MutableByteFloatMapMutableByteFloatMap.withAllKeyValues(Iterable<ByteFloatPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableByteFloatMap.withKeyValue(byte key, float value) Associates a value with the specified key.MutableByteFloatMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteFloatMap.withoutKey(byte key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableByteFloatMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableByteFloatMapModifier and TypeFieldDescriptionprivate final MutableByteFloatMapImmutableByteFloatHashMap.delegate -
Uses of MutableByteFloatMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteFloatMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableByteFloatMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableByteFloatMapModifier and TypeFieldDescriptionprivate final MutableByteFloatMapSynchronizedByteFloatMap.mapprivate final MutableByteFloatMapUnmodifiableByteFloatMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteFloatMapModifier and TypeMethodDescriptionByteFloatHashMap.asSynchronized()SynchronizedByteFloatMap.asSynchronized()UnmodifiableByteFloatMap.asSynchronized()ByteFloatHashMap.asUnmodifiable()SynchronizedByteFloatMap.asUnmodifiable()UnmodifiableByteFloatMap.asUnmodifiable()MutableByteFloatMapFactoryImpl.empty()FloatByteHashMap.flipUniqueValues()SynchronizedFloatByteMap.flipUniqueValues()UnmodifiableFloatByteMap.flipUniqueValues()MutableByteFloatMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) MutableByteFloatMapFactoryImpl.of()MutableByteFloatMapFactoryImpl.of(byte key, float value) MutableByteFloatMapFactoryImpl.of(byte key1, float value1, byte key2, float value2) MutableByteFloatMapFactoryImpl.of(byte key1, float value1, byte key2, float value2, byte key3, float value3) MutableByteFloatMapFactoryImpl.of(byte key1, float value1, byte key2, float value2, byte key3, float value3, byte key4, float value4) MutableByteFloatMapFactoryImpl.ofAll(ByteFloatMap map) MutableByteFloatMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedByteFloatMap.reject(ByteFloatPredicate predicate) UnmodifiableByteFloatMap.reject(ByteFloatPredicate predicate) SynchronizedByteFloatMap.select(ByteFloatPredicate predicate) UnmodifiableByteFloatMap.select(ByteFloatPredicate predicate) MutableByteFloatMapFactoryImpl.with()MutableByteFloatMapFactoryImpl.with(byte key, float value) MutableByteFloatMapFactoryImpl.with(byte key1, float value1, byte key2, float value2) MutableByteFloatMapFactoryImpl.with(byte key1, float value1, byte key2, float value2, byte key3, float value3) MutableByteFloatMapFactoryImpl.with(byte key1, float value1, byte key2, float value2, byte key3, float value3, byte key4, float value4) MutableByteFloatMapFactoryImpl.withAll(ByteFloatMap map) MutableByteFloatMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedByteFloatMap.withKeyValue(byte key, float value) UnmodifiableByteFloatMap.withKeyValue(byte key, float value) SynchronizedByteFloatMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteFloatMap.withoutAllKeys(ByteIterable keys) SynchronizedByteFloatMap.withoutKey(byte key) UnmodifiableByteFloatMap.withoutKey(byte key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteFloatMap