Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectIntMap
-
Packages that use ImmutableObjectIntMap 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 ImmutableObjectIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectIntMap Modifier and Type Method Description <K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. empty()
<T,K>
ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableObjectIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. of()
Same asImmutableObjectIntMapFactory.empty()
.<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. of(K key, int value)
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. ofAll(ObjectIntMap<? extends K> map)
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. with()
Same asImmutableObjectIntMapFactory.empty()
.<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. with(K key, int value)
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactory. withAll(ObjectIntMap<? extends K> map)
-
Uses of ImmutableObjectIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectIntMap Modifier and Type Method Description ImmutableObjectIntMap<V>
ImmutableIntObjectMap. flipUniqueValues()
ImmutableObjectIntMap<K>
ImmutableObjectIntMap. newWithKeyValue(K 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.ImmutableObjectIntMap<K>
ImmutableObjectIntMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableObjectIntMap<K>
ImmutableObjectIntMap. newWithoutKey(K key)
Copy this map, remove any associated value with the key (if one exists), and return the copy as a new immutable map.ImmutableObjectIntMap<K>
ImmutableObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntMap. select(ObjectIntPredicate<? super K> predicate)
default ImmutableObjectIntMap<K>
ImmutableObjectIntMap. tap(IntProcedure procedure)
ImmutableObjectIntMap<K>
ObjectIntMap. toImmutable()
Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectIntMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectIntMap Modifier and Type Class Description class
AbstractImmutableObjectIntMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableObjectIntEmptyMap<K>
ImmutableObjectIntEmptyMap is an optimization forImmutableObjectIntMap
of size 0.(package private) class
ImmutableObjectIntHashMap<K>
ImmutableObjectIntHashMap is the non-modifiable equivalent ofObjectIntHashMap
.(package private) class
ImmutableObjectIntSingletonMap<K>
ImmutableObjectIntSingletonMap is an optimization forImmutableObjectIntMap
of size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectIntMap Modifier and Type Field Description (package private) static ImmutableObjectIntMap<?>
ImmutableObjectIntEmptyMap. INSTANCE
Methods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectIntMap Modifier and Type Method Description <K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. empty()
ImmutableObjectIntMap<V>
ImmutableIntObjectEmptyMap. flipUniqueValues()
ImmutableObjectIntMap<V>
ImmutableIntObjectHashMap. flipUniqueValues()
ImmutableObjectIntMap<V>
ImmutableIntObjectSingletonMap. flipUniqueValues()
<T,K>
ImmutableObjectIntMap<K>ImmutableObjectIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. newWithKeyValue(K key, int value)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. newWithKeyValue(K key, int value)
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. newWithKeyValue(K key, int value)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. newWithoutAllKeys(java.lang.Iterable<? extends K> keys)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. newWithoutKey(K key)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. newWithoutKey(K key)
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. newWithoutKey(K key)
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. of()
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. of(K key, int value)
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. ofAll(ObjectIntMap<? extends K> map)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. reject(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. reject(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. reject(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. select(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. select(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. select(ObjectIntPredicate<? super K> objectIntPredicate)
ImmutableObjectIntMap<K>
ImmutableObjectIntEmptyMap. toImmutable()
ImmutableObjectIntMap<K>
ImmutableObjectIntHashMap. toImmutable()
ImmutableObjectIntMap<K>
ImmutableObjectIntSingletonMap. toImmutable()
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. with()
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. with(K key, int value)
<K> ImmutableObjectIntMap<K>
ImmutableObjectIntMapFactoryImpl. withAll(ObjectIntMap<? extends K> map)
-
Uses of ImmutableObjectIntMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectIntMap Modifier and Type Method Description ImmutableObjectIntMap<K>
ObjectIntHashMap. toImmutable()
ImmutableObjectIntMap<K>
ObjectIntHashMapWithHashingStrategy. toImmutable()
ImmutableObjectIntMap<K>
SynchronizedObjectIntMap. toImmutable()
ImmutableObjectIntMap<K>
UnmodifiableObjectIntMap. toImmutable()
-