Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectLongMap
-
Packages that use MutableObjectLongMap Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
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 This package contains implementations of theMutableMap
interface.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.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
MutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectLongMap Modifier and Type Method Description <K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactory. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. empty()
<T,K>
MutableObjectLongMap<K>MutableObjectLongMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableObjectLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactory. of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. of()
Same asMutableObjectLongMapFactory.empty()
.default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. of(K key, long value)
default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. of(K key1, long value1, K key2, long value2)
default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. of(K key1, long value1, K key2, long value2, K key3, long value3)
default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. of(K key1, long value1, K key2, long value2, K key3, long value3, K key4, long value4)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. ofAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. ofInitialCapacity(int capacity)
Same asMutableObjectLongMapFactory.empty()
.<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactory. with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. with()
Same asMutableObjectLongMapFactory.empty()
.default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. with(K key, long value)
default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. with(K key1, long value1, K key2, long value2)
default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. with(K key1, long value1, K key2, long value2, K key3, long value3)
default <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. with(K key1, long value1, K key2, long value2, K key3, long value3, K key4, long value4)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. withAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactory. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. withInitialCapacity(int capacity)
Same asMutableObjectLongMapFactory.empty()
. -
Uses of MutableObjectLongMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
MutableMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
MutableMapIterable. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectLongMap Modifier and Type Method Description MutableObjectLongMap<K>
MutableObjectLongMap. asSynchronized()
MutableObjectLongMap<K>
MutableObjectLongMap. asUnmodifiable()
MutableObjectLongMap<V>
MutableLongObjectMap. flipUniqueValues()
MutableObjectLongMap<K>
MutableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
MutableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
<VV> MutableObjectLongMap<VV>
MutablePrimitiveObjectMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
MutablePrimitiveObjectMap. sumByLong(Function<? super V,? extends VV> groupBy, LongFunction<? super V> function)
default MutableObjectLongMap<K>
MutableObjectLongMap. tap(LongProcedure procedure)
default MutableObjectLongMap<K>
MutableObjectLongMap. withAllKeyValues(java.lang.Iterable<ObjectLongPair<K>> keyValuePairs)
MutableObjectLongMap<K>
MutableObjectLongMap. withKeyValue(K key, long value)
Associates a value with the specified key.MutableObjectLongMap<K>
MutableObjectLongMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectLongMap<K>
MutableObjectLongMap. withoutKey(K key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectLongMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
MutableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MutableStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
AbstractMutableBagIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MultiReaderHashBag. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableBag. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableBagIterable. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
MultiReaderHashBag. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableBag. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
UnmodifiableSortedBag. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableSortedBag. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
AbstractMutableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
AbstractMutableBiMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableBiMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableObjectLongMap Modifier and Type Method Description static <T,V>
Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>PrimitiveFunctions. sumByIntFunction(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T,V>
Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>PrimitiveFunctions. sumByIntFunction(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T,V>
Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>PrimitiveFunctions. sumByLongFunction(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
static <T,V>
Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>PrimitiveFunctions. sumByLongFunction(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
AbstractCollectionAdapter. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractSynchronizedMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractUnmodifiableMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractCollectionAdapter. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractSynchronizedMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractUnmodifiableMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableObjectLongMap Modifier and Type Method Description static <T,V>
java.util.stream.Collector<T,?,MutableObjectLongMap<V>>Collectors2. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
Groups and sums the values using the two specified functions.static <T,V>
java.util.stream.Collector<T,?,MutableObjectLongMap<V>>Collectors2. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
Groups and sums the values using the two specified functions. -
Uses of MutableObjectLongMap in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
FastList. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
FastList. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
AbstractSynchronizedMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
AbstractSynchronizedMapIterable. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableObjectLongMap Modifier and Type Field Description private MutableObjectLongMap<K>
ImmutableObjectLongHashMap. delegate
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
AbstractMutableMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableMutableMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
AbstractMutableMapIterable. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableMutableMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableObjectLongMap Modifier and Type Class Description class
ObjectLongHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectLongHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectLongMap<K>
A synchronized view of aMutableObjectLongMap
.class
UnmodifiableObjectLongMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableObjectLongMap Modifier and Type Field Description private MutableObjectLongMap<K>
SynchronizedObjectLongMap. map
private MutableObjectLongMap<K>
UnmodifiableObjectLongMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableObjectLongMap Modifier and Type Method Description MutableObjectLongMap<K>
ObjectLongHashMap. asSynchronized()
MutableObjectLongMap<K>
ObjectLongHashMapWithHashingStrategy. asSynchronized()
MutableObjectLongMap<K>
SynchronizedObjectLongMap. asSynchronized()
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. asSynchronized()
MutableObjectLongMap<K>
ObjectLongHashMap. asUnmodifiable()
MutableObjectLongMap<K>
ObjectLongHashMapWithHashingStrategy. asUnmodifiable()
MutableObjectLongMap<K>
SynchronizedObjectLongMap. asUnmodifiable()
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. asUnmodifiable()
<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactoryImpl. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. empty()
MutableObjectLongMap<V>
LongObjectHashMap. flipUniqueValues()
MutableObjectLongMap<V>
SynchronizedLongObjectMap. flipUniqueValues()
MutableObjectLongMap<V>
UnmodifiableLongObjectMap. flipUniqueValues()
<T,K>
MutableObjectLongMap<K>MutableObjectLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, LongFunction<? super T> valueFunction)
<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactoryImpl. of(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. of()
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. of(K key, long value)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. of(K key1, long value1, K key2, long value2)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. of(K key1, long value1, K key2, long value2, K key3, long value3)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. of(K key1, long value1, K key2, long value2, K key3, long value3, K key4, long value4)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. ofAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. ofInitialCapacity(int capacity)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
<V1> MutableObjectLongMap<V1>
ByteObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
CharObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
DoubleObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
FloatObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
IntObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
LongObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ShortObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ByteObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
CharObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
DoubleObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
FloatObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
IntObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
LongObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ShortObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedByteObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedCharObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedDoubleObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedFloatObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedIntObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedLongObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedShortObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableByteObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableCharObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableDoubleObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableFloatObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableIntObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableLongObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableShortObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactoryImpl. with(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. with()
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. with(K key, long value)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. with(K key1, long value1, K key2, long value2)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. with(K key1, long value1, K key2, long value2, K key3, long value3)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. with(K key1, long value1, K key2, long value2, K key3, long value3, K key4, long value4)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. withAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongHashingStrategyMapFactoryImpl. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. withInitialCapacity(int capacity)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. withKeyValue(K key, long value)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. withKeyValue(K key, long value)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. withoutKey(K key)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. withoutKey(K key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableObjectLongMap Constructor Description SynchronizedObjectLongMap(MutableObjectLongMap<K> map)
SynchronizedObjectLongMap(MutableObjectLongMap<K> map, java.lang.Object newLock)
UnmodifiableObjectLongMap(MutableObjectLongMap<K> map)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
OrderedMapAdapter. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
UnmodifiableMutableOrderedMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
OrderedMapAdapter. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
UnmodifiableMutableOrderedMap. sumByLong(Function<? super V,? extends VV> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
UnmodifiableTreeMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableTreeMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as MutableObjectLongMap Modifier and Type Field Description private MutableObjectLongMap<V>
ParallelIterate.SumByIntProcedure. map
private MutableObjectLongMap<V>
ParallelIterate.SumByLongProcedure. map
private MutableObjectLongMap<V>
ParallelIterate.SumByIntCombiner. result
private MutableObjectLongMap<V>
ParallelIterate.SumByLongCombiner. result
Methods in org.eclipse.collections.impl.parallel that return MutableObjectLongMap Modifier and Type Method Description MutableObjectLongMap<V>
ParallelIterate.SumByIntProcedure. getResult()
MutableObjectLongMap<V>
ParallelIterate.SumByLongProcedure. getResult()
Constructors in org.eclipse.collections.impl.parallel with parameters of type MutableObjectLongMap Constructor Description SumByIntCombiner(MutableObjectLongMap<V> result)
SumByLongCombiner(MutableObjectLongMap<V> result)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
ArrayStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
SynchronizedStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
ArrayStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
SynchronizedStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableObjectLongMap Modifier and Type Method Description static <V,T>
MutableObjectLongMap<V>InternalArrayIterate. sumByInt(T[] array, int size, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <V,T>
MutableObjectLongMap<V>InternalArrayIterate. sumByLong(T[] array, int size, Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-