Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntIntMap
Packages that use ImmutableIntIntMap
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 ImmutableIntIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableIntIntMapModifier and TypeMethodDescriptionImmutableIntIntMapFactory.empty()
ImmutableIntIntMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableIntIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntIntMapFactory.of()
Same asImmutableIntIntMapFactory.empty()
.ImmutableIntIntMapFactory.of
(int key, int value) ImmutableIntIntMapFactory.with()
Same asImmutableIntIntMapFactory.empty()
.ImmutableIntIntMapFactory.with
(int key, int value) -
Uses of ImmutableIntIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntIntMapModifier and TypeMethodDescriptionImmutableIntIntMap.flipUniqueValues()
ImmutableIntIntMap.newWithKeyValue
(int 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.ImmutableIntIntMap.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.ImmutableIntIntMap.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.ImmutableIntIntMap.reject
(IntIntPredicate predicate) ImmutableIntIntMap.select
(IntIntPredicate predicate) IntIntMap.toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableIntIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableIntIntMapModifier and TypeClassDescription(package private) final class
ImmutableIntIntEmptyMap is an optimization forImmutableIntIntMap
of size 0.(package private) final class
ImmutableIntIntHashMap is the non-modifiable equivalent ofIntIntHashMap
.(package private) final class
ImmutableIntIntSingletonMap is an optimization forImmutableIntIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntIntMapModifier and TypeFieldDescription(package private) static final ImmutableIntIntMap
ImmutableIntIntEmptyMap.INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntIntMapModifier and TypeMethodDescriptionImmutableIntIntMapFactoryImpl.empty()
ImmutableIntIntEmptyMap.flipUniqueValues()
ImmutableIntIntHashMap.flipUniqueValues()
ImmutableIntIntSingletonMap.flipUniqueValues()
ImmutableIntIntMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) ImmutableIntIntEmptyMap.newWithKeyValue
(int key, int value) ImmutableIntIntHashMap.newWithKeyValue
(int key, int value) ImmutableIntIntSingletonMap.newWithKeyValue
(int key, int value) ImmutableIntIntEmptyMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntIntHashMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntIntSingletonMap.newWithoutAllKeys
(IntIterable keys) ImmutableIntIntEmptyMap.newWithoutKey
(int key) ImmutableIntIntHashMap.newWithoutKey
(int key) ImmutableIntIntSingletonMap.newWithoutKey
(int key) ImmutableIntIntMapFactoryImpl.of()
ImmutableIntIntMapFactoryImpl.of
(int key, int value) ImmutableIntIntEmptyMap.reject
(IntIntPredicate predicate) ImmutableIntIntHashMap.reject
(IntIntPredicate predicate) ImmutableIntIntSingletonMap.reject
(IntIntPredicate predicate) ImmutableIntIntEmptyMap.select
(IntIntPredicate predicate) ImmutableIntIntHashMap.select
(IntIntPredicate predicate) ImmutableIntIntSingletonMap.select
(IntIntPredicate predicate) ImmutableIntIntEmptyMap.toImmutable()
ImmutableIntIntHashMap.toImmutable()
ImmutableIntIntSingletonMap.toImmutable()
ImmutableIntIntMapFactoryImpl.with()
ImmutableIntIntMapFactoryImpl.with
(int key, int value) -
Uses of ImmutableIntIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntIntMapModifier and TypeMethodDescriptionIntIntHashMap.toImmutable()
SynchronizedIntIntMap.toImmutable()
UnmodifiableIntIntMap.toImmutable()