PrimitiveIterable, ShortIterableImmutableShortBag, MutableShortBagShortHashBag, SynchronizedShortBag, UnmodifiableShortBagpublic interface ShortBag extends ShortIterable
| Modifier and Type | Method | Description |
|---|---|---|
ListIterable<ShortIntPair> |
bottomOccurrences(int count) |
Returns the
count least frequently occurring items. |
<V> Bag<V> |
collect(ShortToObjectFunction<? 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(ShortIntProcedure 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(short item) |
The occurrences of a distinct item in the bag.
|
ShortBag |
reject(ShortPredicate predicate) |
Returns a new ShortIterable with all of the elements in the ShortIterable that
return false for the specified predicate.
|
ShortBag |
select(ShortPredicate predicate) |
Returns a new ShortIterable with all of the elements in the ShortIterable that
return true for the specified predicate.
|
ShortBag |
selectByOccurrences(IntPredicate predicate) |
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ShortBag |
selectDuplicates() |
Returns all elements of the bag that have more than one occurrence.
|
ShortSet |
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 ShortBag |
tap(ShortProcedure procedure) |
|
ImmutableShortBag |
toImmutable() |
Returns an immutable copy of this bag.
|
ListIterable<ShortIntPair> |
topOccurrences(int count) |
Returns the
count most frequently occurring items. |
default java.lang.String |
toStringOfItemToCount() |
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringallSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, 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, reduce, reduceIfEmpty, reject, select, shortIterator, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListint sizeDistinct()
default ShortBag tap(ShortProcedure procedure)
tap in interface ShortIterableShortBag selectByOccurrences(IntPredicate predicate)
default ShortBag selectDuplicates()
ShortSet selectUnique()
ListIterable<ShortIntPair> 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<ShortIntPair> 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(short item)
void forEachWithOccurrences(ShortIntProcedure procedure)
ShortBag select(ShortPredicate predicate)
ShortIterableselect in interface ShortIterableShortBag reject(ShortPredicate predicate)
ShortIterablereject in interface ShortIterable<V> Bag<V> collect(ShortToObjectFunction<? extends V> function)
ShortIterablecollect in interface ShortIterableboolean equals(java.lang.Object o)
Bag.equals(Object).equals in class java.lang.Objectint hashCode()
Bag.hashCode().hashCode in class java.lang.ObjectImmutableShortBag toImmutable()
default java.lang.String toStringOfItemToCount()
Copyright © 2004–2020. All rights reserved.