Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntObjectMap
Packages that use ImmutableIntObjectMap
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 ImmutableIntObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableIntObjectMapModifier and TypeMethodDescription<V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.empty()<T,V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableIntObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.of()Same asImmutableIntObjectMapFactory.empty().<V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.of(int key, V value) <V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.ofAll(IntObjectMap<? extends V> map) <V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.with()Same asImmutableIntObjectMapFactory.empty().<V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.with(int key, V value) <V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory.withAll(IntObjectMap<? extends V> map) -
Uses of ImmutableIntObjectMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntObjectMapModifier and TypeMethodDescriptionImmutableObjectIntMap.flipUniqueValues()ImmutableIntObjectMap.newWithKeyValue(int key, V 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.ImmutableIntObjectMap.newWithoutAllKeys(IntIterable keys) Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableIntObjectMap.newWithoutKey(int key) Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableIntObjectMap.reject(IntObjectPredicate<? super V> predicate) ImmutableIntObjectMap.select(IntObjectPredicate<? super V> predicate) IntObjectMap.toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable.