Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteDoubleMap
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 MutableByteDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteDoubleMap Modifier and Type Method Description MutableByteDoubleMap
MutableByteDoubleMapFactory. empty()
<T> MutableByteDoubleMap
MutableByteDoubleMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableByteDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteDoubleMap
MutableByteDoubleMapFactory. of()
Same asMutableByteDoubleMapFactory.empty()
.MutableByteDoubleMap
MutableByteDoubleMapFactory. ofAll(ByteDoubleMap map)
MutableByteDoubleMap
MutableByteDoubleMapFactory. ofInitialCapacity(int capacity)
Same asMutableByteDoubleMapFactory.empty()
.MutableByteDoubleMap
MutableByteDoubleMapFactory. with()
Same asMutableByteDoubleMapFactory.empty()
.MutableByteDoubleMap
MutableByteDoubleMapFactory. withAll(ByteDoubleMap map)
MutableByteDoubleMap
MutableByteDoubleMapFactory. withInitialCapacity(int capacity)
Same asMutableByteDoubleMapFactory.empty()
. -
Uses of MutableByteDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteDoubleMap Modifier and Type Method Description MutableByteDoubleMap
MutableByteDoubleMap. 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.MutableByteDoubleMap
MutableByteDoubleMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableByteDoubleMap
MutableDoubleByteMap. flipUniqueValues()
MutableByteDoubleMap
MutableByteDoubleMap. reject(ByteDoublePredicate predicate)
MutableByteDoubleMap
MutableByteDoubleMap. select(ByteDoublePredicate predicate)
default MutableByteDoubleMap
MutableByteDoubleMap. withAllKeyValues(Iterable<ByteDoublePair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableByteDoubleMap
MutableByteDoubleMap. withKeyValue(byte key, double value)
Associates a value with the specified key.MutableByteDoubleMap
MutableByteDoubleMap. withoutAllKeys(ByteIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableByteDoubleMap
MutableByteDoubleMap. withoutKey(byte key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableByteDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteDoubleMap Modifier and Type Class Description class
ByteDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedByteDoubleMap
A synchronized view of aMutableByteDoubleMap
.class
UnmodifiableByteDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteDoubleMap Modifier and Type Method Description MutableByteDoubleMap
ByteDoubleHashMap. asSynchronized()
MutableByteDoubleMap
SynchronizedByteDoubleMap. asSynchronized()
MutableByteDoubleMap
UnmodifiableByteDoubleMap. asSynchronized()
MutableByteDoubleMap
ByteDoubleHashMap. asUnmodifiable()
MutableByteDoubleMap
SynchronizedByteDoubleMap. asUnmodifiable()
MutableByteDoubleMap
UnmodifiableByteDoubleMap. asUnmodifiable()
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. empty()
MutableByteDoubleMap
DoubleByteHashMap. flipUniqueValues()
MutableByteDoubleMap
SynchronizedDoubleByteMap. flipUniqueValues()
MutableByteDoubleMap
UnmodifiableDoubleByteMap. flipUniqueValues()
<T> MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. of()
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. ofAll(ByteDoubleMap map)
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. ofInitialCapacity(int capacity)
MutableByteDoubleMap
SynchronizedByteDoubleMap. reject(ByteDoublePredicate predicate)
MutableByteDoubleMap
UnmodifiableByteDoubleMap. reject(ByteDoublePredicate predicate)
MutableByteDoubleMap
SynchronizedByteDoubleMap. select(ByteDoublePredicate predicate)
MutableByteDoubleMap
UnmodifiableByteDoubleMap. select(ByteDoublePredicate predicate)
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. with()
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. withAll(ByteDoubleMap map)
MutableByteDoubleMap
MutableByteDoubleMapFactoryImpl. withInitialCapacity(int capacity)
MutableByteDoubleMap
SynchronizedByteDoubleMap. withKeyValue(byte key, double value)
MutableByteDoubleMap
UnmodifiableByteDoubleMap. withKeyValue(byte key, double value)
MutableByteDoubleMap
SynchronizedByteDoubleMap. withoutAllKeys(ByteIterable keys)
MutableByteDoubleMap
UnmodifiableByteDoubleMap. withoutAllKeys(ByteIterable keys)
MutableByteDoubleMap
SynchronizedByteDoubleMap. withoutKey(byte key)
MutableByteDoubleMap
UnmodifiableByteDoubleMap. withoutKey(byte key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteDoubleMap Constructor Description SynchronizedByteDoubleMap(MutableByteDoubleMap map)
SynchronizedByteDoubleMap(MutableByteDoubleMap map, Object newLock)
UnmodifiableByteDoubleMap(MutableByteDoubleMap map)