ByteIterable
, PrimitiveIterable
ImmutableByteBag
, MutableByteBag
ByteHashBag
, SynchronizedByteBag
, UnmodifiableByteBag
public interface ByteBag extends ByteIterable
Modifier and Type | Method | Description |
---|---|---|
ListIterable<ByteIntPair> |
bottomOccurrences(int count) |
Returns the
count least frequently occurring items. |
<V> Bag<V> |
collect(ByteToObjectFunction<? 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(ByteIntProcedure 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(byte item) |
The occurrences of a distinct item in the bag.
|
ByteBag |
reject(BytePredicate predicate) |
Returns a new ByteIterable with all of the elements in the ByteIterable that
return false for the specified predicate.
|
ByteBag |
select(BytePredicate predicate) |
Returns a new ByteIterable with all of the elements in the ByteIterable that
return true for the specified predicate.
|
ByteBag |
selectByOccurrences(IntPredicate predicate) |
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ByteBag |
selectDuplicates() |
Returns all elements of the bag that have more than one occurrence.
|
default ByteSet |
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 ByteBag |
tap(ByteProcedure procedure) |
|
ImmutableByteBag |
toImmutable() |
Returns an immutable copy of this bag.
|
ListIterable<ByteIntPair> |
topOccurrences(int count) |
Returns the
count most frequently occurring items. |
default java.lang.String |
toStringOfItemToCount() |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, byteIterator, 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, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
int sizeDistinct()
default ByteBag tap(ByteProcedure procedure)
tap
in interface ByteIterable
ByteBag selectByOccurrences(IntPredicate predicate)
default ByteBag selectDuplicates()
default ByteSet selectUnique()
ListIterable<ByteIntPair> 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<ByteIntPair> 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(byte item)
void forEachWithOccurrences(ByteIntProcedure procedure)
ByteBag select(BytePredicate predicate)
ByteIterable
select
in interface ByteIterable
ByteBag reject(BytePredicate predicate)
ByteIterable
reject
in interface ByteIterable
<V> Bag<V> collect(ByteToObjectFunction<? extends V> function)
ByteIterable
collect
in interface ByteIterable
boolean equals(java.lang.Object o)
Bag.equals(Object)
.equals
in class java.lang.Object
int hashCode()
Bag.hashCode()
.hashCode
in class java.lang.Object
ImmutableByteBag toImmutable()
default java.lang.String toStringOfItemToCount()
Copyright © 2004–2018. All rights reserved.