CharBag, CharIterable, MutableCharCollection, PrimitiveIterableCharHashBag, SynchronizedCharBag, UnmodifiableCharBagpublic interface MutableCharBag extends MutableCharCollection, CharBag
| Modifier and Type | Method | Description |
|---|---|---|
void |
addOccurrences(char item,
int occurrences) |
|
MutableCharBag |
asSynchronized() |
|
MutableCharBag |
asUnmodifiable() |
|
MutableList<CharIntPair> |
bottomOccurrences(int count) |
Returns the
count least frequently occurring items. |
<V> MutableBag<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.
|
MutableCharBag |
reject(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
boolean |
removeOccurrences(char item,
int occurrences) |
|
MutableCharBag |
select(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
MutableCharBag |
selectByOccurrences(IntPredicate predicate) |
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default MutableCharBag |
tap(CharProcedure procedure) |
|
ImmutableCharBag |
toImmutable() |
Returns an immutable copy of this bag.
|
MutableList<CharIntPair> |
topOccurrences(int count) |
Returns the
count most frequently occurring items. |
MutableCharBag |
with(char element) |
|
MutableCharBag |
withAll(CharIterable elements) |
|
MutableCharBag |
without(char element) |
|
MutableCharBag |
withoutAll(CharIterable elements) |
equals, forEachWithOccurrences, hashCode, occurrencesOf, sizeDistinctallSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListadd, addAll, addAll, charIterator, clear, remove, removeAll, removeAll, removeIf, retainAll, retainAllappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringvoid addOccurrences(char item,
int occurrences)
boolean removeOccurrences(char item,
int occurrences)
default MutableCharBag tap(CharProcedure procedure)
tap in interface CharBagtap in interface CharIterabletap in interface MutableCharCollectionMutableCharBag selectByOccurrences(IntPredicate predicate)
selectByOccurrences in interface CharBagMutableList<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.topOccurrences in interface CharBagMutableList<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.bottomOccurrences in interface CharBagMutableCharBag select(CharPredicate predicate)
CharIterableselect in interface CharBagselect in interface CharIterableselect in interface MutableCharCollectionMutableCharBag reject(CharPredicate predicate)
CharIterablereject in interface CharBagreject in interface CharIterablereject in interface MutableCharCollection<V> MutableBag<V> collect(CharToObjectFunction<? extends V> function)
CharIterablecollect in interface CharBagcollect in interface CharIterablecollect in interface MutableCharCollectionMutableCharBag with(char element)
with in interface MutableCharCollectionMutableCharBag without(char element)
without in interface MutableCharCollectionMutableCharBag withAll(CharIterable elements)
withAll in interface MutableCharCollectionMutableCharBag withoutAll(CharIterable elements)
withoutAll in interface MutableCharCollectionMutableCharBag asUnmodifiable()
asUnmodifiable in interface MutableCharCollectionMutableCharBag asSynchronized()
asSynchronized in interface MutableCharCollectionImmutableCharBag toImmutable()
toImmutable in interface CharBagtoImmutable in interface MutableCharCollectionCopyright © 2004–2018. All rights reserved.