Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteShortMap
Packages that use MutableByteShortMap
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 MutableByteShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteShortMapModifier and TypeMethodDescriptionMutableByteShortMapFactory.empty()MutableByteShortMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteShortMapFactory.of()Same asMutableByteShortMapFactory.empty().default MutableByteShortMapMutableByteShortMapFactory.of(byte key, short value) default MutableByteShortMapMutableByteShortMapFactory.of(byte key1, short value1, byte key2, short value2) default MutableByteShortMapMutableByteShortMapFactory.of(byte key1, short value1, byte key2, short value2, byte key3, short value3) default MutableByteShortMapMutableByteShortMapFactory.of(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) MutableByteShortMapFactory.ofAll(ByteShortMap map) MutableByteShortMapFactory.ofInitialCapacity(int capacity) Same asMutableByteShortMapFactory.empty().MutableByteShortMapFactory.with()Same asMutableByteShortMapFactory.empty().default MutableByteShortMapMutableByteShortMapFactory.with(byte key, short value) default MutableByteShortMapMutableByteShortMapFactory.with(byte key1, short value1, byte key2, short value2) default MutableByteShortMapMutableByteShortMapFactory.with(byte key1, short value1, byte key2, short value2, byte key3, short value3) default MutableByteShortMapMutableByteShortMapFactory.with(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) MutableByteShortMapFactory.withAll(ByteShortMap map) MutableByteShortMapFactory.withInitialCapacity(int capacity) Same asMutableByteShortMapFactory.empty(). -
Uses of MutableByteShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteShortMapModifier and TypeMethodDescriptionMutableByteShortMap.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.MutableByteShortMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortByteMap.flipUniqueValues()MutableByteShortMap.reject(ByteShortPredicate predicate) MutableByteShortMap.select(ByteShortPredicate predicate) default MutableByteShortMapMutableByteShortMap.withAllKeyValues(Iterable<ByteShortPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableByteShortMap.withKeyValue(byte key, short value) Associates a value with the specified key.MutableByteShortMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteShortMap.withoutKey(byte key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableByteShortMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableByteShortMapModifier and TypeFieldDescriptionprivate final MutableByteShortMapImmutableByteShortHashMap.delegate -
Uses of MutableByteShortMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableByteShortMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableByteShortMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableByteShortMapModifier and TypeFieldDescriptionprivate final MutableByteShortMapSynchronizedByteShortMap.mapprivate final MutableByteShortMapUnmodifiableByteShortMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableByteShortMapModifier and TypeMethodDescriptionByteShortHashMap.asSynchronized()SynchronizedByteShortMap.asSynchronized()UnmodifiableByteShortMap.asSynchronized()ByteShortHashMap.asUnmodifiable()SynchronizedByteShortMap.asUnmodifiable()UnmodifiableByteShortMap.asUnmodifiable()MutableByteShortMapFactoryImpl.empty()ShortByteHashMap.flipUniqueValues()SynchronizedShortByteMap.flipUniqueValues()UnmodifiableShortByteMap.flipUniqueValues()MutableByteShortMapFactoryImpl.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableByteShortMapFactoryImpl.of()MutableByteShortMapFactoryImpl.of(byte key, short value) MutableByteShortMapFactoryImpl.of(byte key1, short value1, byte key2, short value2) MutableByteShortMapFactoryImpl.of(byte key1, short value1, byte key2, short value2, byte key3, short value3) MutableByteShortMapFactoryImpl.of(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) MutableByteShortMapFactoryImpl.ofAll(ByteShortMap map) MutableByteShortMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedByteShortMap.reject(ByteShortPredicate predicate) UnmodifiableByteShortMap.reject(ByteShortPredicate predicate) SynchronizedByteShortMap.select(ByteShortPredicate predicate) UnmodifiableByteShortMap.select(ByteShortPredicate predicate) MutableByteShortMapFactoryImpl.with()MutableByteShortMapFactoryImpl.with(byte key, short value) MutableByteShortMapFactoryImpl.with(byte key1, short value1, byte key2, short value2) MutableByteShortMapFactoryImpl.with(byte key1, short value1, byte key2, short value2, byte key3, short value3) MutableByteShortMapFactoryImpl.with(byte key1, short value1, byte key2, short value2, byte key3, short value3, byte key4, short value4) MutableByteShortMapFactoryImpl.withAll(ByteShortMap map) MutableByteShortMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedByteShortMap.withKeyValue(byte key, short value) UnmodifiableByteShortMap.withKeyValue(byte key, short value) SynchronizedByteShortMap.withoutAllKeys(ByteIterable keys) UnmodifiableByteShortMap.withoutAllKeys(ByteIterable keys) SynchronizedByteShortMap.withoutKey(byte key) UnmodifiableByteShortMap.withoutKey(byte key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableByteShortMap