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.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.
|
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.
|
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) |
Modifier and Type | Interface | Description |
---|---|---|
interface |
ImmutableObjectLongMap<K> |
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
MutableObjectLongMap<K> |
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
Modifier and Type | Method | Description |
---|---|---|
ObjectLongMap<K> |
ObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) |
|
ObjectLongMap<K> |
ObjectLongMap.select(ObjectLongPredicate<? super K> predicate) |
Modifier and Type | Method | Description |
---|---|---|
void |
MutableObjectLongMap.putAll(ObjectLongMap<? extends K> map) |
Modifier and Type | Method | Description |
---|---|---|
<V> ObjectLongMap<V> |
SynchronizedRichIterable.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function) |
|
<V> ObjectLongMap<V> |
UnmodifiableRichIterable.sumByInt(Function<? super T,? extends V> groupBy,
IntFunction<? super T> function) |
|
<V> ObjectLongMap<V> |
SynchronizedRichIterable.sumByLong(Function<? super T,? extends V> groupBy,
LongFunction<? super T> function) |
|
<V> ObjectLongMap<V> |
UnmodifiableRichIterable.sumByLong(Function<? super T,? extends V> groupBy,
LongFunction<? super T> function) |
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) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractImmutableObjectLongMap<V> |
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.
|
Modifier and Type | Method | Description |
---|---|---|
<K> ImmutableObjectLongMap<K> |
ImmutableObjectLongMapFactoryImpl.ofAll(ObjectLongMap<? extends K> map) |
|
<K> ImmutableObjectLongMap<K> |
ImmutableObjectLongMapFactoryImpl.withAll(ObjectLongMap<? extends K> map) |
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 a
MutableObjectLongMap . |
class |
UnmodifiableObjectLongMap<K> |
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.
|
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) |
|
void |
ObjectLongHashMap.putAll(ObjectLongMap<? extends K> map) |
|
void |
ObjectLongHashMapWithHashingStrategy.putAll(ObjectLongMap<? extends K> map) |
|
void |
SynchronizedObjectLongMap.putAll(ObjectLongMap<? extends K> map) |
|
void |
UnmodifiableObjectLongMap.putAll(ObjectLongMap<? extends K> map) |
|
<K> MutableObjectLongMap<K> |
MutableObjectLongMapFactoryImpl.withAll(ObjectLongMap<? extends K> map) |
Constructor | Description |
---|---|
ObjectLongHashMap(ObjectLongMap<? extends K> map) |
|
ObjectLongHashMapWithHashingStrategy(HashingStrategy<? super K> hashingStrategy,
ObjectLongMap<? extends K> map) |
Modifier and Type | Method | Description |
---|---|---|
static <T,V> ObjectLongMap<V> |
ParallelIterate.sumByInt(Iterable<T> iterable,
Function<T,V> groupBy,
IntFunction<? super T> function) |
|
static <T,V> ObjectLongMap<V> |
ParallelIterate.sumByLong(Iterable<T> iterable,
Function<T,V> groupBy,
LongFunction<? super T> function) |
Modifier and Type | Method | Description |
---|---|---|
static <V,T> ObjectLongMap<V> |
ArrayIterate.sumByInt(T[] array,
Function<T,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<T,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) |
Modifier and Type | Method | Description |
---|---|---|
static <V,T> ObjectLongMap<V> |
IterableIterate.sumByInt(Iterable<T> iterable,
Function<T,V> groupBy,
IntFunction<? super T> function) |
|
static <V,T> ObjectLongMap<V> |
RandomAccessListIterate.sumByInt(List<T> list,
Function<T,V> groupBy,
IntFunction<? super T> function) |
|
static <V,T> ObjectLongMap<V> |
IterableIterate.sumByLong(Iterable<T> iterable,
Function<T,V> groupBy,
LongFunction<? super T> function) |
|
static <V,T> ObjectLongMap<V> |
RandomAccessListIterate.sumByLong(List<T> list,
Function<T,V> groupBy,
LongFunction<? super T> function) |
Copyright © 2004–2017. All rights reserved.