Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleBooleanMap
| 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 MutableDoubleBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleBooleanMap Modifier and Type Method Description MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. empty()<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableDoubleBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. of()MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. ofAll(DoubleBooleanMap map)MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. ofInitialCapacity(int capacity)MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. with()MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. withAll(DoubleBooleanMap map)MutableDoubleBooleanMapMutableDoubleBooleanMapFactory. withInitialCapacity(int capacity) -
Uses of MutableDoubleBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleBooleanMap Modifier and Type Method Description MutableDoubleBooleanMapMutableDoubleBooleanMap. 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.MutableDoubleBooleanMapMutableDoubleBooleanMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleBooleanMapMutableDoubleBooleanMap. reject(DoubleBooleanPredicate predicate)MutableDoubleBooleanMapMutableDoubleBooleanMap. select(DoubleBooleanPredicate predicate)default MutableDoubleBooleanMapMutableDoubleBooleanMap. withAllKeyValues(Iterable<DoubleBooleanPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleBooleanMapMutableDoubleBooleanMap. withKeyValue(double key, boolean value)Associates a value with the specified key.MutableDoubleBooleanMapMutableDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleBooleanMapMutableDoubleBooleanMap. withoutKey(double key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableDoubleBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleBooleanMap Modifier and Type Class Description classDoubleBooleanHashMapThis file was automatically generated from template file primitiveBooleanHashMap.stg.classSynchronizedDoubleBooleanMapA synchronized view of aMutableDoubleBooleanMap.classUnmodifiableDoubleBooleanMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleBooleanMap Modifier and Type Method Description MutableDoubleBooleanMapDoubleBooleanHashMap. asSynchronized()MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. asSynchronized()MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. asSynchronized()MutableDoubleBooleanMapDoubleBooleanHashMap. asUnmodifiable()MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. asUnmodifiable()MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. asUnmodifiable()MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. empty()<T> MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. of()MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. ofAll(DoubleBooleanMap map)MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. ofInitialCapacity(int capacity)MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. reject(DoubleBooleanPredicate predicate)MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. reject(DoubleBooleanPredicate predicate)MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. select(DoubleBooleanPredicate predicate)MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. select(DoubleBooleanPredicate predicate)MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. with()MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. withAll(DoubleBooleanMap map)MutableDoubleBooleanMapMutableDoubleBooleanMapFactoryImpl. withInitialCapacity(int capacity)MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. withKeyValue(double key, boolean value)MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. withKeyValue(double key, boolean value)MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. withoutKey(double key)MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. withoutKey(double key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableDoubleBooleanMap Constructor Description SynchronizedDoubleBooleanMap(MutableDoubleBooleanMap map)SynchronizedDoubleBooleanMap(MutableDoubleBooleanMap map, Object newLock)UnmodifiableDoubleBooleanMap(MutableDoubleBooleanMap map)