Uses of Interface
org.eclipse.collections.api.map.primitive.ImmutableObjectLongMap
Packages that use ImmutableObjectLongMap
Package
Description
This package contains interfaces for map API which enhance the performance and functionality of
MapThis 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 interfaces for stack API.
This package contains implementations of the
ImmutableBag interface.This package contains implementations of the
ImmutableCollection interface.This package contains implementations of the
ImmutableMap interface.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.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the
ImmutableStack interface.-
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V> ImmutableCollection.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return ImmutableObjectLongMapModifier and TypeMethodDescription<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.empty()<T,K> ImmutableObjectLongMap <K> ImmutableObjectLongMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableObjectLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.of()<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.of(K key, long value) <K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.ofAll(ObjectLongMap<? extends K> map) <K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.with()<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.with(K key, long value) <K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactory.withAll(ObjectLongMap<? extends K> map) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableObjectLongMapModifier and TypeMethodDescription<VV> ImmutableObjectLongMap<VV> ImmutableOrderedMap.sumByInt(Function<? super V, ? extends VV> groupBy, IntFunction<? super V> function) <VV> ImmutableObjectLongMap<VV> ImmutableOrderedMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return ImmutableObjectLongMapModifier and TypeMethodDescriptionImmutableLongObjectMap.flipUniqueValues()ImmutableObjectLongMap.newWithKeyValue(K key, long 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.ImmutableObjectLongMap.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.ImmutableObjectLongMap.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.ImmutableObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) ImmutableObjectLongMap.select(ObjectLongPredicate<? super K> predicate) <VV> ImmutableObjectLongMap<VV> ImmutablePrimitiveObjectMap.sumByInt(Function<? super V, ? extends VV> groupBy, IntFunction<? super V> function) <VV> ImmutableObjectLongMap<VV> ImmutablePrimitiveObjectMap.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) default ImmutableObjectLongMap<K> ImmutableObjectLongMap.tap(LongProcedure procedure) ObjectLongMap.toImmutable()Returns a copy of this map that is immutable (if this map is mutable) or itself if it is already immutable. -
Uses of ImmutableObjectLongMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V> ImmutableStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V> AbstractImmutableBagIterable.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V> AbstractImmutableBagIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<V1> ImmutableObjectLongMap<V1> AbstractImmutableBiMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableBiMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V> AbstractImmutableCollection.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V> AbstractImmutableCollection.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<V1> ImmutableObjectLongMap<V1> AbstractImmutableMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ImmutableObjectLongMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) final classImmutableObjectLongEmptyMap is an optimization forImmutableObjectLongMapof size 0.(package private) final classImmutableObjectLongHashMap is the non-modifiable equivalent ofObjectLongHashMap.(package private) final classImmutableObjectLongSingletonMap is an optimization forImmutableObjectLongMapof size 1.Fields in org.eclipse.collections.impl.map.immutable.primitive declared as ImmutableObjectLongMapModifier and TypeFieldDescription(package private) static final ImmutableObjectLongMap<?> ImmutableObjectLongEmptyMap.INSTANCEMethods in org.eclipse.collections.impl.map.immutable.primitive that return ImmutableObjectLongMapModifier and TypeMethodDescription<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.empty()ImmutableLongObjectEmptyMap.flipUniqueValues()ImmutableLongObjectHashMap.flipUniqueValues()ImmutableLongObjectSingletonMap.flipUniqueValues()<T,K> ImmutableObjectLongMap <K> ImmutableObjectLongMapFactoryImpl.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, LongFunction<? super T> valueFunction) ImmutableObjectLongEmptyMap.newWithKeyValue(K key, long value) ImmutableObjectLongHashMap.newWithKeyValue(K key, long value) ImmutableObjectLongSingletonMap.newWithKeyValue(K key, long value) ImmutableObjectLongEmptyMap.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableObjectLongHashMap.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableObjectLongSingletonMap.newWithoutAllKeys(Iterable<? extends K> keys) ImmutableObjectLongEmptyMap.newWithoutKey(K key) ImmutableObjectLongHashMap.newWithoutKey(K key) ImmutableObjectLongSingletonMap.newWithoutKey(K key) <K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.of()<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.of(K key, long value) <K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.ofAll(ObjectLongMap<? extends K> map) ImmutableObjectLongEmptyMap.reject(ObjectLongPredicate<? super K> objectLongPredicate) ImmutableObjectLongHashMap.reject(ObjectLongPredicate<? super K> objectLongPredicate) ImmutableObjectLongSingletonMap.reject(ObjectLongPredicate<? super K> objectLongPredicate) ImmutableObjectLongEmptyMap.select(ObjectLongPredicate<? super K> objectLongPredicate) ImmutableObjectLongHashMap.select(ObjectLongPredicate<? super K> objectLongPredicate) ImmutableObjectLongSingletonMap.select(ObjectLongPredicate<? super K> objectLongPredicate) <V1> ImmutableObjectLongMap<V1> AbstractImmutableByteObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableCharObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableDoubleObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableFloatObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableIntObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableLongObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableShortObjectMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableByteObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableCharObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableDoubleObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableFloatObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableIntObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableLongObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableShortObjectEmptyMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableByteObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableCharObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableDoubleObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableFloatObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableIntObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableLongObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableShortObjectMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableByteObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableCharObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableDoubleObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableFloatObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableIntObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableLongObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> ImmutableShortObjectEmptyMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) ImmutableObjectLongEmptyMap.toImmutable()ImmutableObjectLongHashMap.toImmutable()ImmutableObjectLongSingletonMap.toImmutable()<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.with()<K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.with(K key, long value) <K> ImmutableObjectLongMap<K> ImmutableObjectLongMapFactoryImpl.withAll(ObjectLongMap<? extends K> map) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableObjectLongMapModifier and TypeMethodDescriptionObjectLongHashMap.toImmutable()ObjectLongHashMapWithHashingStrategy.toImmutable()SynchronizedObjectLongMap.toImmutable()UnmodifiableObjectLongMap.toImmutable() -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<VV> ImmutableObjectLongMap<VV> ImmutableOrderedMapAdapter.sumByInt(Function<? super V, ? extends VV> groupBy, IntFunction<? super V> function) <VV> ImmutableObjectLongMap<VV> ImmutableOrderedMapAdapter.sumByLong(Function<? super V, ? extends VV> groupBy, LongFunction<? super V> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<V1> ImmutableObjectLongMap<V1> AbstractImmutableSortedMap.sumByInt(Function<? super V, ? extends V1> groupBy, IntFunction<? super V> function) <V1> ImmutableObjectLongMap<V1> AbstractImmutableSortedMap.sumByLong(Function<? super V, ? extends V1> groupBy, LongFunction<? super V> function) -
Uses of ImmutableObjectLongMap in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableObjectLongMapModifier and TypeMethodDescription<V> ImmutableObjectLongMap<V> ImmutableArrayStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) Deprecated.<V> ImmutableObjectLongMap<V> ImmutableEmptyStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableNotEmptyStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableArrayStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) Deprecated.<V> ImmutableObjectLongMap<V> ImmutableEmptyStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) <V> ImmutableObjectLongMap<V> ImmutableNotEmptyStack.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function)