Class SynchronizedLongBag
- java.lang.Object
-
- org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedLongCollection
-
- org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedLongBag
-
- All Implemented Interfaces:
java.io.Serializable
,LongBag
,MutableLongBag
,MutableLongCollection
,LongIterable
,PrimitiveIterable
public class SynchronizedLongBag extends AbstractSynchronizedLongCollection implements MutableLongBag
A synchronized view of aMutableLongBag
. It is imperative that the user manually synchronize on the collection when iterating over it using theLongIterator
, as perCollections.synchronizedCollection(Collection)
.This file was automatically generated from template file synchronizedPrimitiveBag.stg.
- Since:
- 3.1.
- See Also:
MutableLongBag.asSynchronized()
,MutableBag.asSynchronized()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SynchronizedLongBag(MutableLongBag bag)
SynchronizedLongBag(MutableLongBag bag, java.lang.Object newLock)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addOccurrences(long item, int occurrences)
LazyLongIterable
asLazy()
Returns a LazyLongIterable adapter wrapping the source LongIterable.MutableLongBag
asSynchronized()
MutableLongBag
asUnmodifiable()
MutableList<LongIntPair>
bottomOccurrences(int count)
Returns thecount
least frequently occurring items.<V> MutableBag<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(java.lang.Object otherBag)
Follows the same general contract asBag.equals(Object)
.void
forEachWithOccurrences(LongIntProcedure procedure)
For each distinct item, with the number of occurrences, execute the specified procedure.private MutableLongBag
getMutableLongBag()
int
hashCode()
Follows the same general contract asBag.hashCode()
.MutableLongBag
newEmpty()
Creates a new empty mutable version of the same Bag type.int
occurrencesOf(long item)
The occurrences of a distinct item in the bag.MutableLongBag
reject(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.boolean
removeOccurrences(long item, int occurrences)
MutableLongBag
select(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.MutableLongBag
selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableLongSet
selectUnique()
Returns all elements of the bag that have exactly one occurrence.int
sizeDistinct()
The size of the Bag when counting only distinct elements.ImmutableLongBag
toImmutable()
Returns an immutable copy of this bag.MutableList<LongIntPair>
topOccurrences(int count)
Returns thecount
most frequently occurring items.SynchronizedLongBag
with(long element)
SynchronizedLongBag
withAll(LongIterable elements)
SynchronizedLongBag
without(long element)
SynchronizedLongBag
withoutAll(LongIterable elements)
-
Methods inherited from class org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedLongCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, average, chunk, clear, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, getLock, getLongCollection, injectInto, isEmpty, longIterator, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, notEmpty, reduce, reduceIfEmpty, remove, removeAll, removeAll, removeIf, retainAll, retainAll, size, sum, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.bag.primitive.LongBag
toStringOfItemToCount
-
Methods inherited from interface org.eclipse.collections.api.LongIterable
allSatisfy, anySatisfy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.bag.primitive.MutableLongBag
selectDuplicates, tap
-
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableLongCollection
add, addAll, addAll, clear, longIterator, remove, removeAll, removeAll, removeIf, retainAll, retainAll
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SynchronizedLongBag
public SynchronizedLongBag(MutableLongBag bag)
-
SynchronizedLongBag
public SynchronizedLongBag(MutableLongBag bag, java.lang.Object newLock)
-
-
Method Detail
-
getMutableLongBag
private MutableLongBag getMutableLongBag()
-
with
public SynchronizedLongBag with(long element)
- Specified by:
with
in interfaceMutableLongBag
- Specified by:
with
in interfaceMutableLongCollection
- Overrides:
with
in classAbstractSynchronizedLongCollection
-
without
public SynchronizedLongBag without(long element)
- Specified by:
without
in interfaceMutableLongBag
- Specified by:
without
in interfaceMutableLongCollection
- Overrides:
without
in classAbstractSynchronizedLongCollection
-
withAll
public SynchronizedLongBag withAll(LongIterable elements)
- Specified by:
withAll
in interfaceMutableLongBag
- Specified by:
withAll
in interfaceMutableLongCollection
- Overrides:
withAll
in classAbstractSynchronizedLongCollection
-
withoutAll
public SynchronizedLongBag withoutAll(LongIterable elements)
- Specified by:
withoutAll
in interfaceMutableLongBag
- Specified by:
withoutAll
in interfaceMutableLongCollection
- Overrides:
withoutAll
in classAbstractSynchronizedLongCollection
-
addOccurrences
public void addOccurrences(long item, int occurrences)
- Specified by:
addOccurrences
in interfaceMutableLongBag
-
removeOccurrences
public boolean removeOccurrences(long item, int occurrences)
- Specified by:
removeOccurrences
in interfaceMutableLongBag
-
sizeDistinct
public int sizeDistinct()
Description copied from interface:LongBag
The size of the Bag when counting only distinct elements.- Specified by:
sizeDistinct
in interfaceLongBag
-
occurrencesOf
public int occurrencesOf(long item)
Description copied from interface:LongBag
The occurrences of a distinct item in the bag.- Specified by:
occurrencesOf
in interfaceLongBag
-
forEachWithOccurrences
public void forEachWithOccurrences(LongIntProcedure procedure)
Description copied from interface:LongBag
For each distinct item, with the number of occurrences, execute the specified procedure.- Specified by:
forEachWithOccurrences
in interfaceLongBag
-
select
public MutableLongBag select(LongPredicate predicate)
Description copied from interface:LongIterable
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.- Specified by:
select
in interfaceLongBag
- Specified by:
select
in interfaceLongIterable
- Specified by:
select
in interfaceMutableLongBag
- Specified by:
select
in interfaceMutableLongCollection
- Overrides:
select
in classAbstractSynchronizedLongCollection
-
selectByOccurrences
public MutableLongBag selectByOccurrences(IntPredicate predicate)
Description copied from interface:MutableLongBag
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.- Specified by:
selectByOccurrences
in interfaceLongBag
- Specified by:
selectByOccurrences
in interfaceMutableLongBag
-
selectUnique
public MutableLongSet selectUnique()
Description copied from interface:MutableLongBag
Returns all elements of the bag that have exactly one occurrence.- Specified by:
selectUnique
in interfaceLongBag
- Specified by:
selectUnique
in interfaceMutableLongBag
-
topOccurrences
public MutableList<LongIntPair> topOccurrences(int count)
Description copied from interface:MutableLongBag
Returns thecount
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.- Specified by:
topOccurrences
in interfaceLongBag
- Specified by:
topOccurrences
in interfaceMutableLongBag
-
bottomOccurrences
public MutableList<LongIntPair> bottomOccurrences(int count)
Description copied from interface:MutableLongBag
Returns thecount
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.- Specified by:
bottomOccurrences
in interfaceLongBag
- Specified by:
bottomOccurrences
in interfaceMutableLongBag
-
reject
public MutableLongBag reject(LongPredicate predicate)
Description copied from interface:LongIterable
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.- Specified by:
reject
in interfaceLongBag
- Specified by:
reject
in interfaceLongIterable
- Specified by:
reject
in interfaceMutableLongBag
- Specified by:
reject
in interfaceMutableLongCollection
- Overrides:
reject
in classAbstractSynchronizedLongCollection
-
collect
public <V> MutableBag<V> collect(LongToObjectFunction<? extends V> function)
Description copied from interface:LongIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceLongBag
- Specified by:
collect
in interfaceLongIterable
- Specified by:
collect
in interfaceMutableLongBag
- Specified by:
collect
in interfaceMutableLongCollection
- Overrides:
collect
in classAbstractSynchronizedLongCollection
-
equals
public boolean equals(java.lang.Object otherBag)
Description copied from interface:LongBag
Follows the same general contract asBag.equals(Object)
.
-
hashCode
public int hashCode()
Description copied from interface:LongBag
Follows the same general contract asBag.hashCode()
.
-
asLazy
public LazyLongIterable asLazy()
Description copied from interface:LongIterable
Returns a LazyLongIterable adapter wrapping the source LongIterable.- Specified by:
asLazy
in interfaceLongIterable
- Overrides:
asLazy
in classAbstractSynchronizedLongCollection
-
asUnmodifiable
public MutableLongBag asUnmodifiable()
- Specified by:
asUnmodifiable
in interfaceMutableLongBag
- Specified by:
asUnmodifiable
in interfaceMutableLongCollection
- Overrides:
asUnmodifiable
in classAbstractSynchronizedLongCollection
-
asSynchronized
public MutableLongBag asSynchronized()
- Specified by:
asSynchronized
in interfaceMutableLongBag
- Specified by:
asSynchronized
in interfaceMutableLongCollection
- Overrides:
asSynchronized
in classAbstractSynchronizedLongCollection
-
toImmutable
public ImmutableLongBag toImmutable()
Description copied from interface:MutableLongBag
Returns an immutable copy of this bag.- Specified by:
toImmutable
in interfaceLongBag
- Specified by:
toImmutable
in interfaceMutableLongBag
- Specified by:
toImmutable
in interfaceMutableLongCollection
- Overrides:
toImmutable
in classAbstractSynchronizedLongCollection
-
newEmpty
public MutableLongBag newEmpty()
Description copied from interface:MutableLongBag
Creates a new empty mutable version of the same Bag type.- Specified by:
newEmpty
in interfaceMutableLongBag
- Specified by:
newEmpty
in interfaceMutableLongCollection
- Since:
- 9.2.
-
-