Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectIntMap
Packages that use ImmutableObjectIntMap
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 ImmutableObjectIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectIntMapModifier and TypeMethodDescription<K> ImmutableObjectIntMap<K> ImmutableObjectIntMapFactory.empty()<T,K> ImmutableObjectIntMap <K> ImmutableObjectIntMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<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 ImmutableObjectIntMapModifier and TypeMethodDescriptionImmutableIntObjectMap.flipUniqueValues()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.newWithoutAllKeys(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.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.reject(ObjectIntPredicate<? super K> predicate) ImmutableObjectIntMap.select(ObjectIntPredicate<? super K> predicate) default ImmutableObjectIntMap<K> ImmutableObjectIntMap.tap(IntProcedure procedure) 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 ImmutableObjectIntMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) final classImmutableObjectIntEmptyMap is an optimization forImmutableObjectIntMapof size 0.(package private) final classImmutableObjectIntHashMap is the non-modifiable equivalent ofObjectIntHashMap.(package private) final classImmutableObjectIntSingletonMap is an optimization forImmutableObjectIntMapof size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectIntMapModifier and TypeFieldDescription(package private) static final ImmutableObjectIntMap<?> ImmutableObjectIntEmptyMap.INSTANCEMethods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectIntMapModifier and TypeMethodDescription<K> ImmutableObjectIntMap<K> ImmutableObjectIntMapFactoryImpl.empty()ImmutableIntObjectEmptyMap.flipUniqueValues()ImmutableIntObjectHashMap.flipUniqueValues()ImmutableIntObjectSingletonMap.flipUniqueValues()<T,K> ImmutableObjectIntMap <K> ImmutableObjectIntMapFactoryImpl.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, IntFunction<? super T> valueFunction) ImmutableObjectIntEmptyMap.newWithKeyValue(K key, int value) ImmutableObjectIntHashMap.newWithKeyValue(K key, int value) ImmutableObjectIntSingletonMap.newWithKeyValue(K key, int value) ImmutableObjectIntEmptyMap.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableObjectIntHashMap.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableObjectIntSingletonMap.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableObjectIntEmptyMap.newWithoutKey(K key) ImmutableObjectIntHashMap.newWithoutKey(K key) 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) ImmutableObjectIntEmptyMap.reject(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntHashMap.reject(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntSingletonMap.reject(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntEmptyMap.select(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntHashMap.select(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntSingletonMap.select(ObjectIntPredicate<? super K> objectIntPredicate) ImmutableObjectIntEmptyMap.toImmutable()ImmutableObjectIntHashMap.toImmutable()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 ImmutableObjectIntMapModifier and TypeMethodDescriptionObjectIntHashMap.toImmutable()ObjectIntHashMapWithHashingStrategy.toImmutable()SynchronizedObjectIntMap.toImmutable()UnmodifiableObjectIntMap.toImmutable()