Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortByteMap
Packages that use MutableShortByteMap
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.
-
Uses of MutableShortByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortByteMapModifier and TypeMethodDescriptionMutableShortByteMapFactory.empty()MutableShortByteMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortByteMapFactory.of()Same asMutableShortByteMapFactory.empty().default MutableShortByteMapMutableShortByteMapFactory.of(short key, byte value) default MutableShortByteMapMutableShortByteMapFactory.of(short key1, byte value1, short key2, byte value2) default MutableShortByteMapMutableShortByteMapFactory.of(short key1, byte value1, short key2, byte value2, short key3, byte value3) default MutableShortByteMapMutableShortByteMapFactory.of(short key1, byte value1, short key2, byte value2, short key3, byte value3, short key4, byte value4) MutableShortByteMapFactory.ofAll(ShortByteMap map) MutableShortByteMapFactory.ofInitialCapacity(int capacity) Same asMutableShortByteMapFactory.empty(). but takes in an initial capacityMutableShortByteMapFactory.with()Same asMutableShortByteMapFactory.empty().default MutableShortByteMapMutableShortByteMapFactory.with(short key, byte value) default MutableShortByteMapMutableShortByteMapFactory.with(short key1, byte value1, short key2, byte value2) default MutableShortByteMapMutableShortByteMapFactory.with(short key1, byte value1, short key2, byte value2, short key3, byte value3) default MutableShortByteMapMutableShortByteMapFactory.with(short key1, byte value1, short key2, byte value2, short key3, byte value3, short key4, byte value4) MutableShortByteMapFactory.withAll(ShortByteMap map) MutableShortByteMapFactory.withInitialCapacity(int capacity) Same asMutableShortByteMapFactory.empty(). but takes in an initial capacity -
Uses of MutableShortByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortByteMapModifier and TypeMethodDescriptionMutableShortByteMap.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.MutableShortByteMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableByteShortMap.flipUniqueValues()MutableShortByteMap.reject(ShortBytePredicate predicate) MutableShortByteMap.select(ShortBytePredicate predicate) default MutableShortByteMapMutableShortByteMap.withAllKeyValues(Iterable<ShortBytePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortByteMap.withKeyValue(short key, byte value) Associates a value with the specified key.MutableShortByteMap.withoutAllKeys(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortByteMap.withoutKey(short key) Removes the mapping associated with the key, if one exists, from this map.