| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| 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 |
|---|---|
MutableBooleanBag |
BooleanIterable.toBag()
Converts the BooleanIterable to a new MutableBooleanBag.
|
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutableBag.collectBoolean(BooleanFunction<? super T> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutableBooleanBag.asSynchronized() |
MutableBooleanBag |
MutableBooleanBag.asUnmodifiable() |
default MutableBooleanBag |
MutableBooleanBag.newEmpty()
Creates a new empty mutable version of the same Bag type.
|
MutableBooleanBag |
MutableBooleanBag.reject(BooleanPredicate predicate) |
MutableBooleanBag |
MutableBooleanBag.select(BooleanPredicate predicate) |
MutableBooleanBag |
MutableBooleanBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default MutableBooleanBag |
MutableBooleanBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default MutableBooleanBag |
MutableBooleanBag.tap(BooleanProcedure procedure) |
MutableBooleanBag |
MutableBooleanBag.with(boolean element) |
MutableBooleanBag |
MutableBooleanBag.withAll(BooleanIterable elements) |
MutableBooleanBag |
MutableBooleanBag.without(boolean element) |
MutableBooleanBag |
MutableBooleanBag.withoutAll(BooleanIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutableBooleanBagFactory.empty() |
MutableBooleanBag |
MutableBooleanBagFactory.of()
Same as
MutableBooleanBagFactory.empty(). |
MutableBooleanBag |
MutableBooleanBagFactory.of(boolean... items)
|
MutableBooleanBag |
MutableBooleanBagFactory.ofAll(BooleanIterable items)
|
MutableBooleanBag |
MutableBooleanBagFactory.ofAll(Iterable<Boolean> iterable)
|
MutableBooleanBag |
MutableBooleanBagFactory.with()
Same as
MutableBooleanBagFactory.empty(). |
MutableBooleanBag |
MutableBooleanBagFactory.with(boolean... items) |
MutableBooleanBag |
MutableBooleanBagFactory.withAll(BooleanIterable items) |
MutableBooleanBag |
MutableBooleanBagFactory.withAll(Iterable<Boolean> iterable) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutableMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableBooleanBag |
MutablePrimitiveObjectMap.collectBoolean(BooleanFunction<? super V> booleanFunction) |
MutableBooleanBag |
MutableBooleanValuesMap.reject(BooleanPredicate predicate) |
MutableBooleanBag |
MutableBooleanValuesMap.select(BooleanPredicate predicate) |
Copyright © 2004–2021. All rights reserved.