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 anImmutableIntObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<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 TypeClassDescriptionclass
This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.(package private) final class
ImmutableIntObjectEmptyMap is an optimization forImmutableIntObjectMap
of size 0.(package private) final class
ImmutableIntObjectHashMap is the non-modifiable equivalent ofIntObjectHashMap
.(package private) final class
ImmutableIntObjectSingletonMap is an optimization forImmutableIntObjectMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntObjectMapModifier and TypeFieldDescription(package private) static final ImmutableIntObjectMap
<?> ImmutableIntObjectEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntObjectMapModifier and TypeMethodDescription<V> ImmutableIntObjectMap
<V> ImmutableIntObjectMapFactoryImpl.empty()
ImmutableObjectIntEmptyMap.flipUniqueValues()
ImmutableObjectIntHashMap.flipUniqueValues()
ImmutableObjectIntSingletonMap.flipUniqueValues()
<T,
V> ImmutableIntObjectMap <V> ImmutableIntObjectMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) ImmutableIntObjectEmptyMap.newWithKeyValue
(int key, V value) ImmutableIntObjectHashMap.newWithKeyValue
(int key, V value) ImmutableIntObjectSingletonMap.newWithKeyValue
(int key, V value) ImmutableIntObjectEmptyMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntObjectHashMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntObjectSingletonMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntObjectEmptyMap.newWithoutKey
(int key) ImmutableIntObjectHashMap.newWithoutKey
(int key) ImmutableIntObjectSingletonMap.newWithoutKey
(int key) <V> ImmutableIntObjectMap
<V> ImmutableIntObjectMapFactoryImpl.of()
<V> ImmutableIntObjectMap
<V> ImmutableIntObjectMapFactoryImpl.of
(int key, V value) <V> ImmutableIntObjectMap
<V> ImmutableIntObjectMapFactoryImpl.ofAll
(IntObjectMap<? extends V> map) ImmutableIntObjectEmptyMap.reject
(IntObjectPredicate<? super V> predicate) ImmutableIntObjectHashMap.reject
(IntObjectPredicate<? super V> predicate) ImmutableIntObjectSingletonMap.reject
(IntObjectPredicate<? super V> predicate) ImmutableIntObjectEmptyMap.select
(IntObjectPredicate<? super V> predicate) ImmutableIntObjectHashMap.select
(IntObjectPredicate<? super V> predicate) ImmutableIntObjectSingletonMap.select
(IntObjectPredicate<? super V> predicate) ImmutableIntObjectEmptyMap.toImmutable()
ImmutableIntObjectHashMap.toImmutable()
ImmutableIntObjectSingletonMap.toImmutable()
<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()