| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| org.eclipse.collections.api.factory.stack.primitive |
This package contains factory API for creating primitive stack instances.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| 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.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
LazyLongIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.
|
| Modifier and Type | Method and Description |
|---|---|
LongIterable |
RichIterable.collectLong(LongFunction<? super T> longFunction)
Returns a new primitive
long iterable with the results of applying the specified function on each element
of the source collection. |
LongIterable |
LongIterable.reject(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that
return false for the specified predicate.
|
LongIterable |
LongIterable.select(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that
return true for the specified predicate.
|
default LongIterable |
LongIterable.tap(LongProcedure procedure) |
| Modifier and Type | Method and Description |
|---|---|
default RichIterable<LongIterable> |
LongIterable.chunk(int size)
Partitions elements in fixed size chunks.
|
| Modifier and Type | Method and Description |
|---|---|
default boolean |
LongIterable.containsAll(LongIterable source)
Returns true if all of the values specified in the source LongIterable are contained
in the LongIterable, and false if they are not.
|
default boolean |
LongIterable.containsAny(LongIterable source)
Returns true if any of the values specified in the source LongIterable are contained
in the LongIterable, and false if they are not.
|
default boolean |
LongIterable.containsNone(LongIterable source)
Returns true if none of the values specified in the source LongIterable are contained
in the LongIterable, and false if they are.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableLongCollection> |
RichIterable.flatCollectLong(Function<? super T,? extends LongIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableLongBag
This file was automatically generated from template file immutablePrimitiveBag.stg.
|
interface |
LongBag
This file was automatically generated from template file primitiveBag.stg.
|
interface |
MutableLongBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBag |
ImmutableLongBag.newWithAll(LongIterable elements) |
ImmutableLongBag |
ImmutableLongBag.newWithoutAll(LongIterable elements) |
MutableLongBag |
MutableLongBag.withAll(LongIterable elements) |
MutableLongBag |
MutableLongBag.withoutAll(LongIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableLongCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.
|
interface |
MutableLongCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableLongCollection.addAll(LongIterable source) |
ImmutableLongCollection |
ImmutableLongCollection.newWithAll(LongIterable elements) |
ImmutableLongCollection |
ImmutableLongCollection.newWithoutAll(LongIterable elements) |
boolean |
MutableLongCollection.removeAll(LongIterable source) |
boolean |
MutableLongCollection.retainAll(LongIterable elements) |
MutableLongCollection |
MutableLongCollection.withAll(LongIterable elements) |
MutableLongCollection |
MutableLongCollection.withoutAll(LongIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongBag |
MutableLongBagFactory.ofAll(LongIterable items)
|
ImmutableLongBag |
ImmutableLongBagFactory.ofAll(LongIterable items)
|
MutableLongBag |
MutableLongBagFactory.withAll(LongIterable items) |
ImmutableLongBag |
ImmutableLongBagFactory.withAll(LongIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongList |
MutableLongListFactory.ofAll(LongIterable items)
|
ImmutableLongList |
ImmutableLongListFactory.ofAll(LongIterable items)
|
MutableLongList |
MutableLongListFactory.withAll(LongIterable items) |
ImmutableLongList |
ImmutableLongListFactory.withAll(LongIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongSet |
MutableLongSetFactory.ofAll(LongIterable items)
|
ImmutableLongSet |
ImmutableLongSetFactory.ofAll(LongIterable items)
|
MutableLongSet |
MutableLongSetFactory.withAll(LongIterable items) |
ImmutableLongSet |
ImmutableLongSetFactory.withAll(LongIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableLongStack |
MutableLongStackFactory.ofAll(LongIterable items)
|
ImmutableLongStack |
ImmutableLongStackFactory.ofAll(LongIterable items)
|
MutableLongStack |
MutableLongStackFactory.ofAllReversed(LongIterable items)
|
ImmutableLongStack |
ImmutableLongStackFactory.ofAllReversed(LongIterable items)
|
MutableLongStack |
MutableLongStackFactory.withAll(LongIterable items) |
ImmutableLongStack |
ImmutableLongStackFactory.withAll(LongIterable items) |
MutableLongStack |
MutableLongStackFactory.withAllReversed(LongIterable items) |
ImmutableLongStack |
ImmutableLongStackFactory.withAllReversed(LongIterable items) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableLongList
This file was automatically generated from template file immutablePrimitiveList.stg.
|
interface |
LongList
This file was automatically generated from template file primitiveList.stg.
|
interface |
MutableLongList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableLongList.addAllAtIndex(int index,
LongIterable source) |
ImmutableLongList |
ImmutableLongList.newWithAll(LongIterable elements) |
ImmutableLongList |
ImmutableLongList.newWithoutAll(LongIterable elements) |
MutableLongList |
MutableLongList.withAll(LongIterable elements) |
MutableLongList |
MutableLongList.withoutAll(LongIterable elements) |
default ListIterable<LongLongPair> |
LongList.zipLong(LongIterable iterable)
Returns a
ListIterable formed from this LongList and another LongList by
combining corresponding elements in pairs. |
default MutableList<LongLongPair> |
MutableLongList.zipLong(LongIterable iterable)
Returns a
MutableList formed from this MutableLongList and another LongList by
combining corresponding elements in pairs. |
default ImmutableList<LongLongPair> |
ImmutableLongList.zipLong(LongIterable iterable)
Returns an
ImmutableList formed from this ImmutableLongList and another LongList by
combining corresponding elements in pairs. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ByteLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
CharLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
FloatLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
ImmutableByteLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableCharLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableDoubleLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableFloatLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableIntLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableLongLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableObjectLongMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
ImmutableShortLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
IntLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
LongLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
LongValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.
|
interface |
MutableByteLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableCharLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableFloatLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableIntLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableLongLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableLongValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.
|
interface |
MutableObjectLongMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
interface |
MutableShortLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
ObjectLongMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.
|
interface |
ShortLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBooleanMap |
ImmutableLongBooleanMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongCharMap |
ImmutableLongCharMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongByteMap |
ImmutableLongByteMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongShortMap |
ImmutableLongShortMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongLongMap |
ImmutableLongLongMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongDoubleMap |
ImmutableLongDoubleMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongFloatMap |
ImmutableLongFloatMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongIntMap |
ImmutableLongIntMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableLongObjectMap<V> |
ImmutableLongObjectMap.newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
MutableLongBooleanMap |
MutableLongBooleanMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongCharMap |
MutableLongCharMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongByteMap |
MutableLongByteMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongShortMap |
MutableLongShortMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongLongMap |
MutableLongLongMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongDoubleMap |
MutableLongDoubleMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongFloatMap |
MutableLongFloatMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongIntMap |
MutableLongIntMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableLongObjectMap<V> |
MutableLongObjectMap.withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
OrderedLongIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.
|
interface |
ReversibleLongIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableLongSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
LongSet
This file was automatically generated from template file primitiveSet.stg.
|
interface |
MutableLongSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongSet |
ImmutableLongSet.newWithAll(LongIterable elements) |
ImmutableLongSet |
ImmutableLongSet.newWithoutAll(LongIterable elements) |
MutableLongSet |
MutableLongSet.withAll(LongIterable elements) |
MutableLongSet |
MutableLongSet.withoutAll(LongIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableLongStack
This file was automatically generated from template file immutablePrimitiveStack.stg.
|
interface |
LongStack
This file was automatically generated from template file primitiveStack.stg.
|
interface |
MutableLongStack
This file was automatically generated from template file mutablePrimitiveStack.stg.
|
Copyright © 2004–2022. All rights reserved.