LongIterable
, PrimitiveIterable
ImmutableLongBag
, MutableLongBag
LongHashBag
, SynchronizedLongBag
, UnmodifiableLongBag
public interface LongBag extends LongIterable
Modifier and Type | Method | Description |
---|---|---|
ListIterable<LongIntPair> |
bottomOccurrences(int count) |
Returns the
count least frequently occurring items. |
<V> Bag<V> |
collect(LongToObjectFunction<? 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(LongIntProcedure 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(long item) |
The occurrences of a distinct item in the bag.
|
LongBag |
reject(LongPredicate predicate) |
Returns a new LongIterable with all of the elements in the LongIterable that
return false for the specified predicate.
|
LongBag |
select(LongPredicate predicate) |
Returns a new LongIterable with all of the elements in the LongIterable that
return true for the specified predicate.
|
LongBag |
selectByOccurrences(IntPredicate predicate) |
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
int |
sizeDistinct() |
The size of the Bag when counting only distinct elements.
|
ImmutableLongBag |
toImmutable() |
Returns an immutable copy of this bag.
|
ListIterable<LongIntPair> |
topOccurrences(int count) |
Returns the
count most frequently occurring items. |
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, longIterator, max, maxIfEmpty, median, 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()
LongBag selectByOccurrences(IntPredicate predicate)
ListIterable<LongIntPair> 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<LongIntPair> 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(long item)
void forEachWithOccurrences(LongIntProcedure procedure)
LongBag select(LongPredicate predicate)
LongIterable
select
in interface LongIterable
LongBag reject(LongPredicate predicate)
LongIterable
reject
in interface LongIterable
<V> Bag<V> collect(LongToObjectFunction<? extends V> function)
LongIterable
collect
in interface LongIterable
boolean equals(Object o)
Bag.equals(Object)
.int hashCode()
Bag.hashCode()
.ImmutableLongBag toImmutable()
Copyright © 2004–2017. All rights reserved.