BooleanIterable, PrimitiveIterableImmutableBooleanBag, MutableBooleanBagBooleanHashBag, SynchronizedBooleanBag, UnmodifiableBooleanBagpublic interface BooleanBag extends BooleanIterable
| Modifier and Type | Method | Description |
|---|---|---|
ListIterable<BooleanIntPair> |
bottomOccurrences(int count) |
Returns the
count least frequently occurring items. |
<V> Bag<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.
|
boolean |
equals(java.lang.Object o) |
Follows the same general contract as
Bag.equals(Object). |
void |
forEachWithOccurrences(BooleanIntProcedure procedure) |
For each distinct item, with the number of occurrences, execute the specified procedure.
|
int |
hashCode() |
Follows the same general contract as
Bag.hashCode(). |
int |
occurrencesOf(boolean item) |
The occurrences of a distinct item in the bag.
|
BooleanBag |
reject(BooleanPredicate predicate) |
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return false for the specified predicate.
|
BooleanBag |
select(BooleanPredicate predicate) |
Returns a new BooleanIterable with all of the elements in the BooleanIterable that
return true for the specified predicate.
|
BooleanBag |
selectByOccurrences(IntPredicate predicate) |
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
int |
sizeDistinct() |
The size of the Bag when counting only distinct elements.
|
default BooleanBag |
tap(BooleanProcedure procedure) |
|
ImmutableBooleanBag |
toImmutable() |
Returns an immutable copy of this bag.
|
ListIterable<BooleanIntPair> |
topOccurrences(int count) |
Returns the
count most frequently occurring items. |
allSatisfy, anySatisfy, asLazy, booleanIterator, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, noneSatisfy, reject, select, toArray, toBag, toList, toSetappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringint sizeDistinct()
default BooleanBag tap(BooleanProcedure procedure)
tap in interface BooleanIterableBooleanBag selectByOccurrences(IntPredicate predicate)
ListIterable<BooleanIntPair> topOccurrences(int count)
count 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.ListIterable<BooleanIntPair> bottomOccurrences(int count)
count 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.int occurrencesOf(boolean item)
void forEachWithOccurrences(BooleanIntProcedure procedure)
BooleanBag select(BooleanPredicate predicate)
BooleanIterableselect in interface BooleanIterableBooleanBag reject(BooleanPredicate predicate)
BooleanIterablereject in interface BooleanIterable<V> Bag<V> collect(BooleanToObjectFunction<? extends V> function)
BooleanIterablecollect in interface BooleanIterableboolean equals(java.lang.Object o)
Bag.equals(Object).equals in class java.lang.Objectint hashCode()
Bag.hashCode().hashCode in class java.lang.ObjectImmutableBooleanBag toImmutable()
Copyright © 2004–2018. All rights reserved.