Serializable, MutableShortBag, ShortBag, MutableShortCollection, PrimitiveIterable, ShortIterable@ThreadSafe public final class SynchronizedShortBag extends AbstractSynchronizedShortCollection implements MutableShortBag
MutableShortBag. It is imperative that the user manually synchronize on the collection when iterating over it using the
ShortIterator, as per Collections.synchronizedCollection(Collection).
This file was automatically generated from template file synchronizedPrimitiveBag.stg.
MutableShortBag.asSynchronized(),
MutableBag.asSynchronized(),
Serialized Form| Constructor | Description |
|---|---|
SynchronizedShortBag(MutableShortBag bag) |
|
SynchronizedShortBag(MutableShortBag bag,
Object newLock) |
| Modifier and Type | Method | Description |
|---|---|---|
void |
addOccurrences(short item,
int occurrences) |
|
LazyShortIterable |
asLazy() |
Returns a LazyShortIterable adapter wrapping the source ShortIterable.
|
MutableShortBag |
asSynchronized() |
|
MutableShortBag |
asUnmodifiable() |
|
MutableList<ShortIntPair> |
bottomOccurrences(int count) |
Returns the
count least frequently occurring items. |
<V> MutableBag<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 otherBag) |
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.
|
MutableShortBag |
reject(ShortPredicate predicate) |
Returns a new ShortIterable with all of the elements in the ShortIterable that
return false for the specified predicate.
|
boolean |
removeOccurrences(short item,
int occurrences) |
|
MutableShortBag |
select(ShortPredicate predicate) |
Returns a new ShortIterable with all of the elements in the ShortIterable that
return true for the specified predicate.
|
MutableShortBag |
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.
|
ImmutableShortBag |
toImmutable() |
Returns an immutable copy of this bag.
|
MutableList<ShortIntPair> |
topOccurrences(int count) |
Returns the
count most frequently occurring items. |
SynchronizedShortBag |
with(short element) |
|
SynchronizedShortBag |
withAll(ShortIterable elements) |
|
SynchronizedShortBag |
without(short element) |
|
SynchronizedShortBag |
withoutAll(ShortIterable elements) |
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, average, clear, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, isEmpty, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, notEmpty, remove, removeAll, removeAll, retainAll, retainAll, shortIterator, size, sum, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toStringadd, addAll, addAll, clear, remove, removeAll, removeAll, retainAll, retainAll, shortIteratorappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringallSatisfy, anySatisfy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListpublic SynchronizedShortBag(MutableShortBag bag)
public SynchronizedShortBag(MutableShortBag bag, Object newLock)
public SynchronizedShortBag with(short element)
with in interface MutableShortBagwith in interface MutableShortCollectionwith in class AbstractSynchronizedShortCollectionpublic SynchronizedShortBag without(short element)
without in interface MutableShortBagwithout in interface MutableShortCollectionwithout in class AbstractSynchronizedShortCollectionpublic SynchronizedShortBag withAll(ShortIterable elements)
withAll in interface MutableShortBagwithAll in interface MutableShortCollectionwithAll in class AbstractSynchronizedShortCollectionpublic SynchronizedShortBag withoutAll(ShortIterable elements)
withoutAll in interface MutableShortBagwithoutAll in interface MutableShortCollectionwithoutAll in class AbstractSynchronizedShortCollectionpublic void addOccurrences(short item,
int occurrences)
addOccurrences in interface MutableShortBagpublic boolean removeOccurrences(short item,
int occurrences)
removeOccurrences in interface MutableShortBagpublic int sizeDistinct()
ShortBagsizeDistinct in interface ShortBagpublic int occurrencesOf(short item)
ShortBagoccurrencesOf in interface ShortBagpublic void forEachWithOccurrences(ShortIntProcedure procedure)
ShortBagforEachWithOccurrences in interface ShortBagpublic MutableShortBag select(ShortPredicate predicate)
ShortIterableselect in interface MutableShortBagselect in interface MutableShortCollectionselect in interface ShortBagselect in interface ShortIterableselect in class AbstractSynchronizedShortCollectionpublic MutableShortBag selectByOccurrences(IntPredicate predicate)
MutableShortBagselectByOccurrences in interface MutableShortBagselectByOccurrences in interface ShortBagpublic MutableList<ShortIntPair> topOccurrences(int count)
MutableShortBagcount 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.topOccurrences in interface MutableShortBagtopOccurrences in interface ShortBagpublic MutableList<ShortIntPair> bottomOccurrences(int count)
MutableShortBagcount 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.bottomOccurrences in interface MutableShortBagbottomOccurrences in interface ShortBagpublic MutableShortBag reject(ShortPredicate predicate)
ShortIterablereject in interface MutableShortBagreject in interface MutableShortCollectionreject in interface ShortBagreject in interface ShortIterablereject in class AbstractSynchronizedShortCollectionpublic <V> MutableBag<V> collect(ShortToObjectFunction<? extends V> function)
ShortIterablecollect in interface MutableShortBagcollect in interface MutableShortCollectioncollect in interface ShortBagcollect in interface ShortIterablecollect in class AbstractSynchronizedShortCollectionpublic boolean equals(Object otherBag)
ShortBagBag.equals(Object).public int hashCode()
ShortBagBag.hashCode().public LazyShortIterable asLazy()
ShortIterableasLazy in interface ShortIterableasLazy in class AbstractSynchronizedShortCollectionpublic MutableShortBag asUnmodifiable()
asUnmodifiable in interface MutableShortBagasUnmodifiable in interface MutableShortCollectionasUnmodifiable in class AbstractSynchronizedShortCollectionpublic MutableShortBag asSynchronized()
asSynchronized in interface MutableShortBagasSynchronized in interface MutableShortCollectionasSynchronized in class AbstractSynchronizedShortCollectionpublic ImmutableShortBag toImmutable()
MutableShortBagtoImmutable in interface MutableShortBagtoImmutable in interface MutableShortCollectiontoImmutable in interface ShortBagtoImmutable in class AbstractSynchronizedShortCollectionCopyright © 2004–2017. All rights reserved.