PrimitiveIterable
, ShortIterable
ImmutableShortBag
, MutableShortBag
ShortHashBag
, SynchronizedShortBag
, UnmodifiableShortBag
public 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(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 String |
toStringOfItemToCount() |
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
allSatisfy, 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, toSortedList
int sizeDistinct()
default ShortBag tap(ShortProcedure procedure)
tap
in interface ShortIterable
ShortBag 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)
ShortIterable
select
in interface ShortIterable
ShortBag reject(ShortPredicate predicate)
ShortIterable
reject
in interface ShortIterable
<V> Bag<V> collect(ShortToObjectFunction<? extends V> function)
ShortIterable
collect
in interface ShortIterable
boolean equals(Object o)
Bag.equals(Object)
.int hashCode()
Bag.hashCode()
.ImmutableShortBag toImmutable()
default String toStringOfItemToCount()
Copyright © 2004–2019. All rights reserved.