Interface MutableBooleanBag
- All Superinterfaces:
BooleanBag
,BooleanIterable
,MutableBooleanCollection
,PrimitiveIterable
- All Known Implementing Classes:
BooleanHashBag
,SynchronizedBooleanBag
,UnmodifiableBooleanBag
public interface MutableBooleanBag extends MutableBooleanCollection, BooleanBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
- Since:
- 3.0.
-
Method Summary
Modifier and Type Method Description void
addOccurrences(boolean item, int occurrences)
MutableBooleanBag
asSynchronized()
MutableBooleanBag
asUnmodifiable()
MutableList<BooleanIntPair>
bottomOccurrences(int count)
Returns thecount
least frequently occurring items.<V> MutableBag<V>
collect(BooleanToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.default MutableBooleanBag
newEmpty()
Creates a new empty mutable version of the same Bag type.MutableBooleanBag
reject(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.boolean
removeOccurrences(boolean item, int occurrences)
MutableBooleanBag
select(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.MutableBooleanBag
selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableBooleanBag
selectDuplicates()
Returns all elements of the bag that have more than one occurrence.MutableBooleanSet
selectUnique()
Returns all elements of the bag that have exactly one occurrence.default MutableBooleanBag
tap(BooleanProcedure procedure)
ImmutableBooleanBag
toImmutable()
Returns an immutable copy of this bag.MutableList<BooleanIntPair>
topOccurrences(int count)
Returns thecount
most frequently occurring items.MutableBooleanBag
with(boolean element)
MutableBooleanBag
withAll(BooleanIterable elements)
MutableBooleanBag
without(boolean element)
MutableBooleanBag
withoutAll(BooleanIterable elements)
Methods inherited from interface org.eclipse.collections.api.bag.primitive.BooleanBag
equals, forEachWithOccurrences, hashCode, occurrencesOf, sizeDistinct, toStringOfItemToCount
Methods inherited from interface org.eclipse.collections.api.BooleanIterable
allSatisfy, anySatisfy, asLazy, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, noneSatisfy, reduce, reduceIfEmpty, reject, select, toArray, toArray, toBag, toList, toSet
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableBooleanCollection
add, addAll, addAll, booleanIterator, clear, remove, removeAll, removeAll, removeIf, retainAll, retainAll
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
Method Details
-
addOccurrences
void addOccurrences(boolean item, int occurrences) -
removeOccurrences
boolean removeOccurrences(boolean item, int occurrences) -
tap
- Specified by:
tap
in interfaceBooleanBag
- Specified by:
tap
in interfaceBooleanIterable
- Specified by:
tap
in interfaceMutableBooleanCollection
- Since:
- 9.0.
-
selectByOccurrences
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.- Specified by:
selectByOccurrences
in interfaceBooleanBag
- Since:
- 8.0
-
selectDuplicates
Returns all elements of the bag that have more than one occurrence.- Specified by:
selectDuplicates
in interfaceBooleanBag
- Since:
- 9.2
-
selectUnique
MutableBooleanSet selectUnique()Returns all elements of the bag that have exactly one occurrence.- Specified by:
selectUnique
in interfaceBooleanBag
- Since:
- 9.2
-
topOccurrences
Returns thecount
most frequently occurring items. In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last item will be returned.- Specified by:
topOccurrences
in interfaceBooleanBag
- Since:
- 8.0
-
bottomOccurrences
Returns thecount
least frequently occurring items. In the event of a tie, all of the items with the number of occurrences that match the occurrences of the last item will be returned.- Specified by:
bottomOccurrences
in interfaceBooleanBag
- Since:
- 8.0
-
select
Description copied from interface:BooleanIterable
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.- Specified by:
select
in interfaceBooleanBag
- Specified by:
select
in interfaceBooleanIterable
- Specified by:
select
in interfaceMutableBooleanCollection
-
reject
Description copied from interface:BooleanIterable
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.- Specified by:
reject
in interfaceBooleanBag
- Specified by:
reject
in interfaceBooleanIterable
- Specified by:
reject
in interfaceMutableBooleanCollection
-
collect
Description copied from interface:BooleanIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceBooleanBag
- Specified by:
collect
in interfaceBooleanIterable
- Specified by:
collect
in interfaceMutableBooleanCollection
-
with
- Specified by:
with
in interfaceMutableBooleanCollection
-
without
- Specified by:
without
in interfaceMutableBooleanCollection
-
withAll
- Specified by:
withAll
in interfaceMutableBooleanCollection
-
withoutAll
- Specified by:
withoutAll
in interfaceMutableBooleanCollection
-
asUnmodifiable
MutableBooleanBag asUnmodifiable()- Specified by:
asUnmodifiable
in interfaceMutableBooleanCollection
-
asSynchronized
MutableBooleanBag asSynchronized()- Specified by:
asSynchronized
in interfaceMutableBooleanCollection
-
toImmutable
ImmutableBooleanBag toImmutable()Returns an immutable copy of this bag.- Specified by:
toImmutable
in interfaceBooleanBag
- Specified by:
toImmutable
in interfaceMutableBooleanCollection
-
newEmpty
Creates a new empty mutable version of the same Bag type.- Specified by:
newEmpty
in interfaceMutableBooleanCollection
- Since:
- 9.2.
-