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.
-
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(). but takes in an initial capacityMutableByteShortMapFactory.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(). but takes in an initial capacity -
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.