public interface CharBag extends CharIterable
| Modifier and Type | Method and Description |
|---|---|
ListIterable<CharIntPair> |
bottomOccurrences(int count)
Returns the
count least frequently occurring items. |
<V> Bag<V> |
collect(CharToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
boolean |
equals(Object o)
Follows the same general contract as
Bag.equals(Object). |
void |
forEachWithOccurrences(CharIntProcedure 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(char item)
The occurrences of a distinct item in the bag.
|
CharBag |
reject(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
CharBag |
select(CharPredicate predicate)
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
CharBag |
selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default CharBag |
selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
CharSet |
selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
int |
sizeDistinct()
The size of the Bag when counting only distinct elements.
|
default CharBag |
tap(CharProcedure procedure) |
ImmutableCharBag |
toImmutable()
Returns an immutable copy of this bag.
|
ListIterable<CharIntPair> |
topOccurrences(int count)
Returns the
count most frequently occurring items. |
default String |
toStringOfItemToCount() |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListByappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringint sizeDistinct()
default CharBag tap(CharProcedure procedure)
tap in interface CharIterableCharBag selectByOccurrences(IntPredicate predicate)
default CharBag selectDuplicates()
CharSet selectUnique()
ListIterable<CharIntPair> 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<CharIntPair> 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(char item)
void forEachWithOccurrences(CharIntProcedure procedure)
CharBag select(CharPredicate predicate)
CharIterableselect in interface CharIterableCharBag reject(CharPredicate predicate)
CharIterablereject in interface CharIterable<V> Bag<V> collect(CharToObjectFunction<? extends V> function)
CharIterablecollect in interface CharIterableboolean equals(Object o)
Bag.equals(Object).int hashCode()
Bag.hashCode().ImmutableCharBag toImmutable()
default String toStringOfItemToCount()
Copyright © 2004–2021. All rights reserved.