| 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 |
|---|---|
ImmutableBooleanBag |
ImmutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanBag |
ImmutableBooleanBag.newWith(boolean element) |
ImmutableBooleanBag |
ImmutableBooleanBag.newWithAll(BooleanIterable elements) |
ImmutableBooleanBag |
ImmutableBooleanBag.newWithout(boolean element) |
ImmutableBooleanBag |
ImmutableBooleanBag.newWithoutAll(BooleanIterable elements) |
ImmutableBooleanBag |
ImmutableBooleanBag.reject(BooleanPredicate predicate) |
ImmutableBooleanBag |
ImmutableBooleanBag.select(BooleanPredicate predicate) |
ImmutableBooleanBag |
ImmutableBooleanBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ImmutableBooleanBag |
ImmutableBooleanBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default ImmutableBooleanBag |
ImmutableBooleanBag.tap(BooleanProcedure procedure) |
ImmutableBooleanBag |
BooleanBag.toImmutable()
Returns an immutable copy of this bag.
|
ImmutableBooleanBag |
MutableBooleanBag.toImmutable()
Returns an immutable copy of this bag.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanBag |
ImmutableBooleanBagFactory.empty() |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.of()
Same as
ImmutableBooleanBagFactory.empty(). |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.of(boolean... items)
|
ImmutableBooleanBag |
ImmutableBooleanBagFactory.of(boolean one)
|
ImmutableBooleanBag |
ImmutableBooleanBagFactory.ofAll(BooleanIterable items)
|
ImmutableBooleanBag |
ImmutableBooleanBagFactory.ofAll(Iterable<Boolean> iterable)
|
ImmutableBooleanBag |
ImmutableBooleanBagFactory.with()
Same as
ImmutableBooleanBagFactory.empty(). |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.with(boolean... items) |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.with(boolean one) |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.withAll(BooleanIterable items) |
ImmutableBooleanBag |
ImmutableBooleanBagFactory.withAll(Iterable<Boolean> iterable) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableBooleanBag |
ImmutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
Copyright © 2004–2022. All rights reserved.