Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortBooleanMap
Packages that use MutableShortBooleanMap
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 MutableShortBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortBooleanMapModifier and TypeMethodDescriptionMutableShortBooleanMapFactory.empty()MutableShortBooleanMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortBooleanMapFactory.of()default MutableShortBooleanMapMutableShortBooleanMapFactory.of(short key, boolean value) default MutableShortBooleanMapMutableShortBooleanMapFactory.of(short key1, boolean value1, short key2, boolean value2) default MutableShortBooleanMapMutableShortBooleanMapFactory.of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) default MutableShortBooleanMapMutableShortBooleanMapFactory.of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) MutableShortBooleanMapFactory.ofAll(ShortBooleanMap map) MutableShortBooleanMapFactory.ofInitialCapacity(int capacity) MutableShortBooleanMapFactory.with()default MutableShortBooleanMapMutableShortBooleanMapFactory.with(short key, boolean value) default MutableShortBooleanMapMutableShortBooleanMapFactory.with(short key1, boolean value1, short key2, boolean value2) default MutableShortBooleanMapMutableShortBooleanMapFactory.with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) default MutableShortBooleanMapMutableShortBooleanMapFactory.with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) MutableShortBooleanMapFactory.withAll(ShortBooleanMap map) MutableShortBooleanMapFactory.withInitialCapacity(int capacity) -
Uses of MutableShortBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortBooleanMapModifier and TypeMethodDescriptionMutableShortBooleanMap.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.MutableShortBooleanMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortBooleanMap.reject(ShortBooleanPredicate predicate) MutableShortBooleanMap.select(ShortBooleanPredicate predicate) default MutableShortBooleanMapMutableShortBooleanMap.withAllKeyValues(Iterable<ShortBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortBooleanMap.withKeyValue(short key, boolean value) Associates a value with the specified key.MutableShortBooleanMap.withoutAllKeys(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortBooleanMap.withoutKey(short key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortBooleanMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableShortBooleanMapModifier and TypeFieldDescriptionprivate final MutableShortBooleanMapImmutableShortBooleanHashMap.delegate -
Uses of MutableShortBooleanMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortBooleanMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveBooleanHashMap.stg.classA synchronized view of aMutableShortBooleanMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableShortBooleanMapModifier and TypeFieldDescriptionprivate final MutableShortBooleanMapSynchronizedShortBooleanMap.mapprivate final MutableShortBooleanMapUnmodifiableShortBooleanMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortBooleanMapModifier and TypeMethodDescriptionShortBooleanHashMap.asSynchronized()SynchronizedShortBooleanMap.asSynchronized()UnmodifiableShortBooleanMap.asSynchronized()ShortBooleanHashMap.asUnmodifiable()SynchronizedShortBooleanMap.asUnmodifiable()UnmodifiableShortBooleanMap.asUnmodifiable()MutableShortBooleanMapFactoryImpl.empty()MutableShortBooleanMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableShortBooleanMapFactoryImpl.of()MutableShortBooleanMapFactoryImpl.of(short key, boolean value) MutableShortBooleanMapFactoryImpl.of(short key1, boolean value1, short key2, boolean value2) MutableShortBooleanMapFactoryImpl.of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) MutableShortBooleanMapFactoryImpl.of(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) MutableShortBooleanMapFactoryImpl.ofAll(ShortBooleanMap map) MutableShortBooleanMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedShortBooleanMap.reject(ShortBooleanPredicate predicate) UnmodifiableShortBooleanMap.reject(ShortBooleanPredicate predicate) SynchronizedShortBooleanMap.select(ShortBooleanPredicate predicate) UnmodifiableShortBooleanMap.select(ShortBooleanPredicate predicate) MutableShortBooleanMapFactoryImpl.with()MutableShortBooleanMapFactoryImpl.with(short key, boolean value) MutableShortBooleanMapFactoryImpl.with(short key1, boolean value1, short key2, boolean value2) MutableShortBooleanMapFactoryImpl.with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3) MutableShortBooleanMapFactoryImpl.with(short key1, boolean value1, short key2, boolean value2, short key3, boolean value3, short key4, boolean value4) MutableShortBooleanMapFactoryImpl.withAll(ShortBooleanMap map) MutableShortBooleanMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedShortBooleanMap.withKeyValue(short key, boolean value) UnmodifiableShortBooleanMap.withKeyValue(short key, boolean value) SynchronizedShortBooleanMap.withoutAllKeys(ShortIterable keys) UnmodifiableShortBooleanMap.withoutAllKeys(ShortIterable keys) SynchronizedShortBooleanMap.withoutKey(short key) UnmodifiableShortBooleanMap.withoutKey(short key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortBooleanMapModifierConstructorDescriptionSynchronizedShortBooleanMap(MutableShortBooleanMap map, Object newLock)