Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntIntMap
-
Packages that use ImmutableIntIntMap Package Description org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive 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 ImmutableIntIntMap Modifier and Type Method Description ImmutableIntIntMap
ImmutableIntIntMapFactory. empty()
<T> ImmutableIntIntMap
ImmutableIntIntMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableIntIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntIntMap
ImmutableIntIntMapFactory. of()
Same asImmutableIntIntMapFactory.empty()
.ImmutableIntIntMap
ImmutableIntIntMapFactory. of(int key, int value)
ImmutableIntIntMap
ImmutableIntIntMapFactory. ofAll(IntIntMap map)
ImmutableIntIntMap
ImmutableIntIntMapFactory. with()
Same asImmutableIntIntMapFactory.empty()
.ImmutableIntIntMap
ImmutableIntIntMapFactory. with(int key, int value)
ImmutableIntIntMap
ImmutableIntIntMapFactory. withAll(IntIntMap map)
-
Uses of ImmutableIntIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableIntIntMap Modifier and Type Method Description ImmutableIntIntMap
ImmutableIntIntMap. flipUniqueValues()
ImmutableIntIntMap
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
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
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
ImmutableIntIntMap. reject(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntMap. select(IntIntPredicate predicate)
ImmutableIntIntMap
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 ImmutableIntIntMap Modifier and Type Class Description (package private) class
ImmutableIntIntEmptyMap
ImmutableIntIntEmptyMap is an optimization forImmutableIntIntMap
of size 0.(package private) class
ImmutableIntIntHashMap
ImmutableIntIntHashMap is the non-modifiable equivalent ofIntIntHashMap
.(package private) class
ImmutableIntIntSingletonMap
ImmutableIntIntSingletonMap is an optimization forImmutableIntIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntIntMap Modifier and Type Field Description (package private) static ImmutableIntIntMap
ImmutableIntIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntIntMap Modifier and Type Method Description ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. empty()
ImmutableIntIntMap
ImmutableIntIntEmptyMap. flipUniqueValues()
ImmutableIntIntMap
ImmutableIntIntHashMap. flipUniqueValues()
ImmutableIntIntMap
ImmutableIntIntSingletonMap. flipUniqueValues()
<T> ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. newWithKeyValue(int key, int value)
ImmutableIntIntMap
ImmutableIntIntHashMap. newWithKeyValue(int key, int value)
ImmutableIntIntMap
ImmutableIntIntSingletonMap. newWithKeyValue(int key, int value)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntIntMap
ImmutableIntIntHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntIntMap
ImmutableIntIntSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. newWithoutKey(int key)
ImmutableIntIntMap
ImmutableIntIntHashMap. newWithoutKey(int key)
ImmutableIntIntMap
ImmutableIntIntSingletonMap. newWithoutKey(int key)
ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. of()
ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. of(int key, int value)
ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. ofAll(IntIntMap map)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. reject(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntHashMap. reject(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntSingletonMap. reject(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. select(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntHashMap. select(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntSingletonMap. select(IntIntPredicate predicate)
ImmutableIntIntMap
ImmutableIntIntEmptyMap. toImmutable()
ImmutableIntIntMap
ImmutableIntIntHashMap. toImmutable()
ImmutableIntIntMap
ImmutableIntIntSingletonMap. toImmutable()
ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. with()
ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. with(int key, int value)
ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. withAll(IntIntMap map)
-
Uses of ImmutableIntIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableIntIntMap Modifier and Type Method Description ImmutableIntIntMap
IntIntHashMap. toImmutable()
ImmutableIntIntMap
SynchronizedIntIntMap. toImmutable()
ImmutableIntIntMap
UnmodifiableIntIntMap. toImmutable()
-