Uses of Interface
org.eclipse.collections.api.map.primitive.ObjectLongMap
| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| 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 |
This package contains implementations for Eclipse Collections API.
|
| org.eclipse.collections.impl.collection | |
| org.eclipse.collections.impl.lazy |
This package contains implementations of the
LazyIterable interface. |
| 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.
|
| org.eclipse.collections.impl.parallel |
This package contains classes which is used for parallel iteration through the containers.
|
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
-
Uses of ObjectLongMap in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ObjectLongMap Modifier and Type Method Description <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 ObjectLongMap Modifier and Type Method Description <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.primitive Modifier and Type Interface Description interfaceImmutableObjectLongMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceMutableObjectLongMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive that return ObjectLongMap Modifier and Type Method Description ObjectLongMap<V>LongObjectMap. flipUniqueValues()Return the ObjectLongMap that is obtained by flipping the direction of this map and making the associations from value to key.ObjectLongMap<K>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<K>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 ObjectLongMap Modifier and Type Method Description voidMutableObjectLongMap. putAll(ObjectLongMap<? extends K> map)Puts all of the key/value mappings from the specified map into this map. -
Uses of ObjectLongMap in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return ObjectLongMap Modifier and Type Method Description <V> ObjectLongMap<V>UnmodifiableRichIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)<V> ObjectLongMap<V>UnmodifiableRichIterable. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function) -
Uses of ObjectLongMap in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ObjectLongMap Modifier and Type Method Description <V> ObjectLongMap<V>AbstractSynchronizedRichIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)<V> ObjectLongMap<V>AbstractSynchronizedRichIterable. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function) -
Uses of ObjectLongMap in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy that return ObjectLongMap Modifier and Type Method Description <V> ObjectLongMap<V>AbstractLazyIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)<V> ObjectLongMap<V>AbstractLazyIterable. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function) -
Uses of ObjectLongMap in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ObjectLongMap Modifier and Type Class Description classAbstractImmutableObjectLongMap<V>This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectLongMap Modifier and Type Method Description <K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactoryImpl. ofAll(ObjectLongMap<? extends K> map)<K> ImmutableObjectLongMap<K>ImmutableObjectLongMapFactoryImpl. withAll(ObjectLongMap<? extends K> map) -
Uses of ObjectLongMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ObjectLongMap Modifier and Type Class Description classObjectLongHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.classObjectLongHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.classSynchronizedObjectLongMap<K>A synchronized view of aMutableObjectLongMap.classUnmodifiableObjectLongMap<K>This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectLongMap Modifier and Type Method Description static <K> ObjectLongHashMapWithHashingStrategy<K>ObjectLongHashMapWithHashingStrategy. newMap(HashingStrategy<? super K> hashingStrategy, ObjectLongMap<K> map)<K> MutableObjectLongMap<K>MutableObjectLongMapFactoryImpl. ofAll(ObjectLongMap<? extends K> map)voidObjectLongHashMap. putAll(ObjectLongMap<? extends K> map)voidObjectLongHashMapWithHashingStrategy. putAll(ObjectLongMap<? extends K> map)voidSynchronizedObjectLongMap. putAll(ObjectLongMap<? extends K> map)voidUnmodifiableObjectLongMap. putAll(ObjectLongMap<? extends K> map)<K> MutableObjectLongMap<K>MutableObjectLongMapFactoryImpl. withAll(ObjectLongMap<? extends K> map)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectLongMap Constructor Description ObjectLongHashMap(ObjectLongMap<? extends K> map)ObjectLongHashMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy, ObjectLongMap<? extends K> map) -
Uses of ObjectLongMap in org.eclipse.collections.impl.parallel
Methods in org.eclipse.collections.impl.parallel that return ObjectLongMap Modifier and Type Method Description static <T, V> ObjectLongMap<V>ParallelIterate. sumByInt(Iterable<T> iterable, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)static <T, V> ObjectLongMap<V>ParallelIterate. sumByLong(Iterable<T> iterable, Function<? super T,? extends V> groupBy, LongFunction<? super T> function) -
Uses of ObjectLongMap in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return ObjectLongMap Modifier and Type Method Description static <V, T> ObjectLongMap<V>ArrayIterate. sumByInt(T[] array, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)static <T, V> ObjectLongMap<V>Iterate. sumByInt(Iterable<T> iterable, Function<T,V> groupBy, IntFunction<? super T> function)static <V, T> ObjectLongMap<V>ListIterate. sumByInt(List<T> list, Function<T,V> groupBy, IntFunction<? super T> function)static <V, T> ObjectLongMap<V>ArrayIterate. sumByLong(T[] array, Function<? super T,? extends V> groupBy, LongFunction<? super T> function)static <T, V> ObjectLongMap<V>Iterate. sumByLong(Iterable<T> iterable, Function<T,V> groupBy, LongFunction<? super T> function)static <V, T> ObjectLongMap<V>ListIterate. sumByLong(List<T> list, Function<T,V> groupBy, LongFunction<? super T> function) -
Uses of ObjectLongMap in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return ObjectLongMap Modifier and Type Method Description static <V, T> ObjectLongMap<V>IterableIterate. sumByInt(Iterable<T> iterable, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)static <V, T> ObjectLongMap<V>RandomAccessListIterate. sumByInt(List<T> list, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)static <V, T> ObjectLongMap<V>IterableIterate. sumByLong(Iterable<T> iterable, Function<? super T,? extends V> groupBy, LongFunction<? super T> function)static <V, T> ObjectLongMap<V>RandomAccessListIterate. sumByLong(List<T> list, Function<? super T,? extends V> groupBy, LongFunction<? super T> function)