| 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 |
|---|---|
ImmutableIntBag |
ImmutableBag.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBag |
ImmutableIntBag.newWith(int element) |
ImmutableIntBag |
ImmutableIntBag.newWithAll(IntIterable elements) |
ImmutableIntBag |
ImmutableIntBag.newWithout(int element) |
ImmutableIntBag |
ImmutableIntBag.newWithoutAll(IntIterable elements) |
ImmutableIntBag |
ImmutableIntBag.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableIntBag.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableIntBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ImmutableIntBag |
ImmutableIntBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default ImmutableIntBag |
ImmutableIntBag.tap(IntProcedure procedure) |
ImmutableIntBag |
IntBag.toImmutable()
Returns an immutable copy of this bag.
|
ImmutableIntBag |
MutableIntBag.toImmutable()
Returns an immutable copy of this bag.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBag |
ImmutableIntBagFactory.empty() |
ImmutableIntBag |
ImmutableIntBagFactory.of()
Same as
ImmutableIntBagFactory.empty(). |
ImmutableIntBag |
ImmutableIntBagFactory.of(int... items)
Same as
ImmutableIntBagFactory.with(int[]). |
ImmutableIntBag |
ImmutableIntBagFactory.of(int one)
Same as
ImmutableIntBagFactory.with(int). |
ImmutableIntBag |
ImmutableIntBagFactory.ofAll(IntIterable items)
|
ImmutableIntBag |
ImmutableIntBagFactory.ofAll(IntStream items) |
ImmutableIntBag |
ImmutableIntBagFactory.ofAll(Iterable<Integer> iterable)
|
ImmutableIntBag |
ImmutableIntBagFactory.with()
Same as
ImmutableIntBagFactory.empty(). |
ImmutableIntBag |
ImmutableIntBagFactory.with(int... items) |
ImmutableIntBag |
ImmutableIntBagFactory.with(int one) |
ImmutableIntBag |
ImmutableIntBagFactory.withAll(IntIterable items) |
ImmutableIntBag |
ImmutableIntBagFactory.withAll(IntStream items) |
ImmutableIntBag |
ImmutableIntBagFactory.withAll(Iterable<Integer> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBag |
ImmutableMap.collectInt(IntFunction<? super V> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBag |
ImmutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) |
ImmutableIntBag |
ImmutableCharIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableByteIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableShortIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableLongIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableDoubleIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableFloatIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableIntIntMap.reject(IntPredicate predicate) |
ImmutableIntBag |
ImmutableCharIntMap.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableByteIntMap.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableShortIntMap.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableLongIntMap.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableDoubleIntMap.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableFloatIntMap.select(IntPredicate predicate) |
ImmutableIntBag |
ImmutableIntIntMap.select(IntPredicate predicate) |
Copyright © 2004–2020. All rights reserved.