Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectIntMap
Packages that use ImmutableObjectIntMap
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 ImmutableObjectIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectIntMapModifier and TypeMethodDescription<K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.empty()<T,K> ImmutableObjectIntMap<K> ImmutableObjectIntMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.of()Same asImmutableObjectIntMapFactory.empty().<K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.of(K key, int value) <K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.ofAll(ObjectIntMap<? extends K> map) <K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.with()Same asImmutableObjectIntMapFactory.empty().<K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.with(K key, int value) <K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory.withAll(ObjectIntMap<? extends K> map) -
Uses of ImmutableObjectIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectIntMapModifier and TypeMethodDescriptionImmutableIntObjectMap.flipUniqueValues()ImmutableObjectIntMap.newWithKeyValue(K key, int value) Copy this map, associate the value with the key (replacing the value if one already exists forkey), and return the copy as new immutable map.ImmutableObjectIntMap.newWithoutAllKeys(Iterable<? extends K> keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectIntMap.newWithoutKey(K key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectIntMap.reject(ObjectIntPredicate<? super K> predicate) ImmutableObjectIntMap.select(ObjectIntPredicate<? super K> predicate) default ImmutableObjectIntMap<K>ImmutableObjectIntMap.tap(IntProcedure procedure) ObjectIntMap.toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable.