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.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
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. -
Uses of ImmutableIntObjectMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableIntObjectMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntObjectMapModifier and TypeMethodDescription<V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.empty()<T,V> ImmutableIntObjectMap <V> ImmutableIntObjectMapFactoryImpl.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) <V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.of()<V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.of(int key, V value) <V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.ofAll(IntObjectMap<? extends V> map) <V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.with()<V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.with(int key, V value) <V> ImmutableIntObjectMap<V> ImmutableIntObjectMapFactoryImpl.withAll(IntObjectMap<? extends V> map) -
Uses of ImmutableIntObjectMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntObjectMapModifier and TypeMethodDescriptionIntObjectHashMap.toImmutable()SynchronizedIntObjectMap.toImmutable()UnmodifiableIntObjectMap.toImmutable()