Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortShortMap
Packages that use MutableShortShortMap
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 mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of MutableShortShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortShortMapModifier and TypeMethodDescriptionMutableShortShortMapFactory.empty()MutableShortShortMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableShortShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortShortMapFactory.of()Same asMutableShortShortMapFactory.empty().default MutableShortShortMapMutableShortShortMapFactory.of(short key, short value) default MutableShortShortMapMutableShortShortMapFactory.of(short key1, short value1, short key2, short value2) default MutableShortShortMapMutableShortShortMapFactory.of(short key1, short value1, short key2, short value2, short key3, short value3) default MutableShortShortMapMutableShortShortMapFactory.of(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4) MutableShortShortMapFactory.ofAll(ShortShortMap map) MutableShortShortMapFactory.ofInitialCapacity(int capacity) Same asMutableShortShortMapFactory.empty().MutableShortShortMapFactory.with()Same asMutableShortShortMapFactory.empty().default MutableShortShortMapMutableShortShortMapFactory.with(short key, short value) default MutableShortShortMapMutableShortShortMapFactory.with(short key1, short value1, short key2, short value2) default MutableShortShortMapMutableShortShortMapFactory.with(short key1, short value1, short key2, short value2, short key3, short value3) default MutableShortShortMapMutableShortShortMapFactory.with(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4) MutableShortShortMapFactory.withAll(ShortShortMap map) MutableShortShortMapFactory.withInitialCapacity(int capacity) Same asMutableShortShortMapFactory.empty(). -
Uses of MutableShortShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortShortMapModifier and TypeMethodDescriptionMutableShortShortMap.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.MutableShortShortMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortShortMap.flipUniqueValues()MutableShortShortMap.reject(ShortShortPredicate predicate) MutableShortShortMap.select(ShortShortPredicate predicate) default MutableShortShortMapMutableShortShortMap.withAllKeyValues(Iterable<ShortShortPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortShortMap.withKeyValue(short key, short value) Associates a value with the specified key.MutableShortShortMap.withoutAllKeys(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortShortMap.withoutKey(short key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortShortMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableShortShortMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortShortMapModifier and TypeMethodDescriptionShortShortHashMap.asSynchronized()SynchronizedShortShortMap.asSynchronized()UnmodifiableShortShortMap.asSynchronized()ShortShortHashMap.asUnmodifiable()SynchronizedShortShortMap.asUnmodifiable()UnmodifiableShortShortMap.asUnmodifiable()MutableShortShortMapFactoryImpl.empty()ShortShortHashMap.flipUniqueValues()SynchronizedShortShortMap.flipUniqueValues()UnmodifiableShortShortMap.flipUniqueValues()MutableShortShortMapFactoryImpl.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableShortShortMapFactoryImpl.of()MutableShortShortMapFactoryImpl.of(short key, short value) MutableShortShortMapFactoryImpl.of(short key1, short value1, short key2, short value2) MutableShortShortMapFactoryImpl.of(short key1, short value1, short key2, short value2, short key3, short value3) MutableShortShortMapFactoryImpl.of(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4) MutableShortShortMapFactoryImpl.ofAll(ShortShortMap map) MutableShortShortMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedShortShortMap.reject(ShortShortPredicate predicate) UnmodifiableShortShortMap.reject(ShortShortPredicate predicate) SynchronizedShortShortMap.select(ShortShortPredicate predicate) UnmodifiableShortShortMap.select(ShortShortPredicate predicate) MutableShortShortMapFactoryImpl.with()MutableShortShortMapFactoryImpl.with(short key, short value) MutableShortShortMapFactoryImpl.with(short key1, short value1, short key2, short value2) MutableShortShortMapFactoryImpl.with(short key1, short value1, short key2, short value2, short key3, short value3) MutableShortShortMapFactoryImpl.with(short key1, short value1, short key2, short value2, short key3, short value3, short key4, short value4) MutableShortShortMapFactoryImpl.withAll(ShortShortMap map) MutableShortShortMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedShortShortMap.withKeyValue(short key, short value) UnmodifiableShortShortMap.withKeyValue(short key, short value) SynchronizedShortShortMap.withoutAllKeys(ShortIterable keys) UnmodifiableShortShortMap.withoutAllKeys(ShortIterable keys) SynchronizedShortShortMap.withoutKey(short key) UnmodifiableShortShortMap.withoutKey(short key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortShortMapModifierConstructorDescriptionSynchronizedShortShortMap(MutableShortShortMap map, Object newLock)