Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectShortMap
Packages that use MutableObjectShortMap
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 MutableObjectShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectShortMapModifier and TypeMethodDescription<K> MutableObjectShortMap<K>MutableObjectShortHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.empty()<T,K> MutableObjectShortMap<K> MutableObjectShortMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableObjectShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectShortMap<K>MutableObjectShortHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectShortMap<K>MutableObjectShortMapFactory.of()Same asMutableObjectShortMapFactory.empty().default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.of(K key, short value) default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.of(K key1, short value1, K key2, short value2) default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.of(K key1, short value1, K key2, short value2, K key3, short value3) default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.of(K key1, short value1, K key2, short value2, K key3, short value3, K key4, short value4) <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.ofAll(ObjectShortMap<? extends K> map) <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.ofInitialCapacity(int capacity) Same asMutableObjectShortMapFactory.empty(). but takes in an initial capacity<K> MutableObjectShortMap<K>MutableObjectShortHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectShortMap<K>MutableObjectShortMapFactory.with()Same asMutableObjectShortMapFactory.empty().default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.with(K key, short value) default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.with(K key1, short value1, K key2, short value2) default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.with(K key1, short value1, K key2, short value2, K key3, short value3) default <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.with(K key1, short value1, K key2, short value2, K key3, short value3, K key4, short value4) <K> MutableObjectShortMap<K>MutableObjectShortMapFactory.withAll(ObjectShortMap<? extends K> map) <K> MutableObjectShortMap<K>MutableObjectShortHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity) Same as#empty()but takes in an initial capacity<K> MutableObjectShortMap<K>MutableObjectShortMapFactory.withInitialCapacity(int capacity) Same asMutableObjectShortMapFactory.empty(). but takes in an initial capacity -
Uses of MutableObjectShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectShortMapModifier and TypeMethodDescriptionMutableObjectShortMap.asSynchronized()MutableObjectShortMap.asUnmodifiable()MutableShortObjectMap.flipUniqueValues()MutableObjectShortMap.reject(ObjectShortPredicate<? super K> predicate) MutableObjectShortMap.select(ObjectShortPredicate<? super K> predicate) default MutableObjectShortMap<K>MutableObjectShortMap.tap(ShortProcedure procedure) default MutableObjectShortMap<K>MutableObjectShortMap.withAllKeyValues(Iterable<ObjectShortPair<K>> keyValuePairs) MutableObjectShortMap.withKeyValue(K key, short value) Associates a value with the specified key.MutableObjectShortMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectShortMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map.