Uses of Interface
org.eclipse.collections.api.map.primitive.ObjectLongMap
Packages that use ObjectLongMap
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of ObjectLongMap in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ObjectLongMapModifier and TypeMethodDescription<V> ObjectLongMap<V>RichIterable.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) Groups and sums the values using the two specified functions.<V> ObjectLongMap<V>RichIterable.sumByLong(Function<? super T, ? extends V> groupBy, LongFunction<? super T> function) Groups and sums the values using the two specified functions. -
Uses of ObjectLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type ObjectLongMapModifier and TypeMethodDescription<K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.ofAll(ObjectLongMap<? extends K> map) <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.ofAll(ObjectLongMap<? extends K> map) <K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactory.withAll(ObjectLongMap<? extends K> map) <K> MutableObjectLongMap<K>MutableObjectLongMapFactory.withAll(ObjectLongMap<? extends K> map) -
Uses of ObjectLongMap in org.eclipse.collections.api.map.primitive
Subinterfaces of ObjectLongMap in org.eclipse.collections.api.map.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceThis file was automatically generated from template file mutableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive that return ObjectLongMapModifier and TypeMethodDescriptionLongObjectMap.flipUniqueValues()Return the ObjectLongMap that is obtained by flipping the direction of this map and making the associations from value to key.ObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) Return a copy of this map containing only the key/value pairs that do not match the predicate.ObjectLongMap.select(ObjectLongPredicate<? super K> predicate) Return a copy of this map containing only the key/value pairs that match the predicate.default ObjectLongMap<K>ObjectLongMap.tap(LongProcedure procedure) Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectLongMapModifier and TypeMethodDescriptionvoidMutableObjectLongMap.putAll(ObjectLongMap<? extends K> map) Puts all of the key/value mappings from the specified map into this map.