public interface MutableCharBag extends MutableCharCollection, CharBag
| Modifier and Type | Method and 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) |
MutableCharBag |
reject(CharPredicate predicate) |
boolean |
removeOccurrences(char item,
int occurrences) |
MutableCharBag |
select(CharPredicate predicate) |
MutableCharBag |
selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
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) |
add, addAll, addAll, charIterator, clear, remove, removeAll, removeAll, retainAll, retainAllequals, forEachWithOccurrences, hashCode, occurrencesOf, sizeDistinctallSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringvoid addOccurrences(char item,
int occurrences)
boolean removeOccurrences(char item,
int occurrences)
MutableCharBag 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)
select in interface CharBagselect in interface CharIterableselect in interface MutableCharCollectionMutableCharBag reject(CharPredicate predicate)
reject in interface CharBagreject in interface CharIterablereject in interface MutableCharCollection<V> MutableBag<V> collect(CharToObjectFunction<? extends V> function)
collect 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–2016. All rights reserved.