public interface ByteBag extends ByteIterable
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
collect(ByteToObjectFunction<? extends V> function) |
boolean |
equals(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) |
ByteBag |
select(BytePredicate predicate) |
int |
sizeDistinct()
The size of the Bag when counting only distinct elements.
|
ImmutableByteBag |
toImmutable()
Returns an immutable copy of this bag.
|
allSatisfy, anySatisfy, asLazy, average, byteIterator, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringint sizeDistinct()
int occurrencesOf(byte item)
void forEachWithOccurrences(ByteIntProcedure procedure)
ByteBag select(BytePredicate predicate)
select in interface ByteIterableByteBag reject(BytePredicate predicate)
reject in interface ByteIterable<V> Bag<V> collect(ByteToObjectFunction<? extends V> function)
collect in interface ByteIterableboolean equals(Object o)
Bag.equals(Object).int hashCode()
Bag.hashCode().ImmutableByteBag toImmutable()
Copyright © 2004–2017. All rights reserved.