Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableIntObjectMap
-
Packages that use ImmutableIntObjectMap 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 ImmutableIntObjectMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableIntObjectMap Modifier and Type Method Description <V> ImmutableIntObjectMap<V>
ImmutableIntObjectMapFactory. empty()
<T,V>
ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory. from(java.lang.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 ImmutableIntObjectMap Modifier and Type Method Description ImmutableIntObjectMap<K>
ImmutableObjectIntMap. flipUniqueValues()
ImmutableIntObjectMap<V>
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<V>
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<V>
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<V>
ImmutableIntObjectMap. reject(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectMap. select(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectMap. tap(Procedure<? super V> procedure)
ImmutableIntObjectMap<V>
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 ImmutableIntObjectMap Modifier and Type Class Description class
AbstractImmutableIntObjectMap<V>
This file was automatically generated from template file abstractImmutablePrimitiveObjectMap.stg.(package private) class
ImmutableIntObjectEmptyMap<V>
ImmutableIntObjectEmptyMap is an optimization forImmutableIntObjectMap
of size 0.(package private) class
ImmutableIntObjectHashMap<V>
ImmutableIntObjectHashMap is the non-modifiable equivalent ofIntObjectHashMap
.(package private) class
ImmutableIntObjectSingletonMap<V>
ImmutableIntObjectSingletonMap is an optimization forImmutableIntObjectMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableIntObjectMap Modifier and Type Field Description (package private) static ImmutableIntObjectMap<?>
ImmutableIntObjectEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableIntObjectMap Modifier and Type Method Description <V> ImmutableIntObjectMap<V>
ImmutableIntObjectMapFactoryImpl. empty()
ImmutableIntObjectMap<K>
ImmutableObjectIntEmptyMap. flipUniqueValues()
ImmutableIntObjectMap<K>
ImmutableObjectIntHashMap. flipUniqueValues()
ImmutableIntObjectMap<K>
ImmutableObjectIntSingletonMap. flipUniqueValues()
<T,V>
ImmutableIntObjectMap<V>ImmutableIntObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. newWithKeyValue(int key, V value)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. newWithKeyValue(int key, V value)
ImmutableIntObjectMap<V>
ImmutableIntObjectSingletonMap. newWithKeyValue(int key, V value)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntObjectMap<V>
ImmutableIntObjectSingletonMap. newWithoutAllKeys(IntIterable keys)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. newWithoutKey(int key)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. newWithoutKey(int key)
ImmutableIntObjectMap<V>
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)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. reject(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. reject(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectSingletonMap. reject(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. select(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. select(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectSingletonMap. select(IntObjectPredicate<? super V> predicate)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. tap(Procedure<? super V> procedure)
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. tap(Procedure<? super V> procedure)
ImmutableIntObjectMap<V>
ImmutableIntObjectSingletonMap. tap(Procedure<? super V> procedure)
ImmutableIntObjectMap<V>
ImmutableIntObjectEmptyMap. toImmutable()
ImmutableIntObjectMap<V>
ImmutableIntObjectHashMap. toImmutable()
ImmutableIntObjectMap<V>
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 ImmutableIntObjectMap Modifier and Type Method Description ImmutableIntObjectMap<V>
IntObjectHashMap. toImmutable()
ImmutableIntObjectMap<V>
SynchronizedIntObjectMap. toImmutable()
ImmutableIntObjectMap<V>
UnmodifiableIntObjectMap. toImmutable()
-