Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectByteMap
Packages that use MutableObjectByteMap
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 MutableObjectByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectByteMapModifier and TypeMethodDescription<K> MutableObjectByteMap<K>MutableObjectByteHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.empty()<T,K> MutableObjectByteMap<K> MutableObjectByteMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableObjectByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectByteMap<K>MutableObjectByteHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectByteMap<K>MutableObjectByteMapFactory.of()Same asMutableObjectByteMapFactory.empty().default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.of(K key, byte value) default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.of(K key1, byte value1, K key2, byte value2) default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.of(K key1, byte value1, K key2, byte value2, K key3, byte value3) default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.of(K key1, byte value1, K key2, byte value2, K key3, byte value3, K key4, byte value4) <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.ofAll(ObjectByteMap<? extends K> map) <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.ofInitialCapacity(int capacity) Same asMutableObjectByteMapFactory.empty(). but takes in an initial capacity<K> MutableObjectByteMap<K>MutableObjectByteHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectByteMap<K>MutableObjectByteMapFactory.with()Same asMutableObjectByteMapFactory.empty().default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.with(K key, byte value) default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.with(K key1, byte value1, K key2, byte value2) default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.with(K key1, byte value1, K key2, byte value2, K key3, byte value3) default <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.with(K key1, byte value1, K key2, byte value2, K key3, byte value3, K key4, byte value4) <K> MutableObjectByteMap<K>MutableObjectByteMapFactory.withAll(ObjectByteMap<? extends K> map) <K> MutableObjectByteMap<K>MutableObjectByteHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity) Same as#empty()but takes in an initial capacity<K> MutableObjectByteMap<K>MutableObjectByteMapFactory.withInitialCapacity(int capacity) Same asMutableObjectByteMapFactory.empty(). but takes in an initial capacity -
Uses of MutableObjectByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectByteMapModifier and TypeMethodDescriptionMutableObjectByteMap.asSynchronized()MutableObjectByteMap.asUnmodifiable()MutableByteObjectMap.flipUniqueValues()MutableObjectByteMap.reject(ObjectBytePredicate<? super K> predicate) MutableObjectByteMap.select(ObjectBytePredicate<? super K> predicate) default MutableObjectByteMap<K>MutableObjectByteMap.tap(ByteProcedure procedure) default MutableObjectByteMap<K>MutableObjectByteMap.withAllKeyValues(Iterable<ObjectBytePair<K>> keyValuePairs) MutableObjectByteMap.withKeyValue(K key, byte value) Associates a value with the specified key.MutableObjectByteMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectByteMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map.