Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectIntMap
Packages that use MutableObjectIntMap
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 MutableObjectIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectIntMapModifier and TypeMethodDescription<K> MutableObjectIntMap<K>MutableObjectIntHashingStrategyMapFactory.empty(HashingStrategy<? super K> hashingStrategy) <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.empty()<T,K> MutableObjectIntMap<K> MutableObjectIntMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> MutableObjectIntMap<K>MutableObjectIntHashingStrategyMapFactory.of(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectIntMap<K>MutableObjectIntMapFactory.of()Same asMutableObjectIntMapFactory.empty().default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.of(K key, int value) default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.of(K key1, int value1, K key2, int value2) default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.of(K key1, int value1, K key2, int value2, K key3, int value3) default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.of(K key1, int value1, K key2, int value2, K key3, int value3, K key4, int value4) <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.ofAll(ObjectIntMap<? extends K> map) <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.ofInitialCapacity(int capacity) Same asMutableObjectIntMapFactory.empty(). but takes in an initial capacity<K> MutableObjectIntMap<K>MutableObjectIntHashingStrategyMapFactory.with(HashingStrategy<? super K> hashingStrategy) Same as#empty().<K> MutableObjectIntMap<K>MutableObjectIntMapFactory.with()Same asMutableObjectIntMapFactory.empty().default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.with(K key, int value) default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.with(K key1, int value1, K key2, int value2) default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.with(K key1, int value1, K key2, int value2, K key3, int value3) default <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.with(K key1, int value1, K key2, int value2, K key3, int value3, K key4, int value4) <K> MutableObjectIntMap<K>MutableObjectIntMapFactory.withAll(ObjectIntMap<? extends K> map) <K> MutableObjectIntMap<K>MutableObjectIntHashingStrategyMapFactory.withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity) Same as#empty()but takes in an initial capacity<K> MutableObjectIntMap<K>MutableObjectIntMapFactory.withInitialCapacity(int capacity) Same asMutableObjectIntMapFactory.empty(). but takes in an initial capacity -
Uses of MutableObjectIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectIntMapModifier and TypeMethodDescriptionMutableObjectIntMap.asSynchronized()MutableObjectIntMap.asUnmodifiable()MutableIntObjectMap.flipUniqueValues()MutableObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) MutableObjectIntMap.select(ObjectIntPredicate<? super K> predicate) default MutableObjectIntMap<K>MutableObjectIntMap.tap(IntProcedure procedure) default MutableObjectIntMap<K>MutableObjectIntMap.withAllKeyValues(Iterable<ObjectIntPair<K>> keyValuePairs) MutableObjectIntMap.withKeyValue(K key, int value) Associates a value with the specified key.MutableObjectIntMap.withoutAllKeys(Iterable<? extends K> keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectIntMap.withoutKey(K key) Removes the mapping associated with the key, if one exists, from this map.