| Package | Description |
|---|---|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBag |
ImmutableBag.collectLong(LongFunction<? super T> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBag |
ImmutableLongBag.newWith(long element) |
ImmutableLongBag |
ImmutableLongBag.newWithAll(LongIterable elements) |
ImmutableLongBag |
ImmutableLongBag.newWithout(long element) |
ImmutableLongBag |
ImmutableLongBag.newWithoutAll(LongIterable elements) |
ImmutableLongBag |
ImmutableLongBag.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableLongBag.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableLongBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ImmutableLongBag |
ImmutableLongBag.tap(LongProcedure procedure) |
ImmutableLongBag |
MutableLongBag.toImmutable()
Returns an immutable copy of this bag.
|
ImmutableLongBag |
LongBag.toImmutable()
Returns an immutable copy of this bag.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBag |
ImmutableLongBagFactory.empty() |
ImmutableLongBag |
ImmutableLongBagFactory.of()
Same as
ImmutableLongBagFactory.empty(). |
ImmutableLongBag |
ImmutableLongBagFactory.of(long... items)
Same as
ImmutableLongBagFactory.with(long[]). |
ImmutableLongBag |
ImmutableLongBagFactory.of(long one)
Same as
ImmutableLongBagFactory.with(long). |
ImmutableLongBag |
ImmutableLongBagFactory.ofAll(LongIterable items)
|
ImmutableLongBag |
ImmutableLongBagFactory.ofAll(LongStream items) |
ImmutableLongBag |
ImmutableLongBagFactory.with()
Same as
ImmutableLongBagFactory.empty(). |
ImmutableLongBag |
ImmutableLongBagFactory.with(long... items) |
ImmutableLongBag |
ImmutableLongBagFactory.with(long one) |
ImmutableLongBag |
ImmutableLongBagFactory.withAll(LongIterable items) |
ImmutableLongBag |
ImmutableLongBagFactory.withAll(LongStream items) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBag |
ImmutableMap.collectLong(LongFunction<? super V> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongBag |
ImmutablePrimitiveObjectMap.collectLong(LongFunction<? super V> longFunction) |
ImmutableLongBag |
ImmutableCharLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableByteLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableShortLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableLongLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableDoubleLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableFloatLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableIntLongMap.reject(LongPredicate predicate) |
ImmutableLongBag |
ImmutableCharLongMap.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableByteLongMap.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableShortLongMap.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableLongLongMap.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableDoubleLongMap.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableFloatLongMap.select(LongPredicate predicate) |
ImmutableLongBag |
ImmutableIntLongMap.select(LongPredicate predicate) |
Copyright © 2004–2017. All rights reserved.