Class SynchronizedLongBag
java.lang.Object
org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedLongCollection
org.eclipse.collections.impl.bag.mutable.primitive.SynchronizedLongBag
- All Implemented Interfaces:
Serializable
,LongBag
,MutableLongBag
,MutableLongCollection
,LongIterable
,PrimitiveIterable
public class SynchronizedLongBag
extends AbstractSynchronizedLongCollection
implements MutableLongBag
A synchronized view of a
MutableLongBag
. It is imperative that the user manually synchronize on the collection when iterating over it using the
LongIterator
, as per Collections.synchronizedCollection(Collection)
.
This file was automatically generated from template file synchronizedPrimitiveBag.stg.
- Since:
- 3.1.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addOccurrences
(long item, int occurrences) asLazy()
Returns a LazyLongIterable adapter wrapping the source LongIterable.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
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.int
hashCode()
Follows the same general contract asBag.hashCode()
.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.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) select
(LongPredicate predicate) Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.selectByOccurrences
(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.Returns all elements of the bag that have exactly one occurrence.int
The size of the Bag when counting only distinct elements.Returns an immutable copy of this bag.topOccurrences
(int count) Returns thecount
most frequently occurring items.with
(long element) withAll
(LongIterable elements) without
(long element) 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, 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 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
-
Constructor Details
-
SynchronizedLongBag
-
SynchronizedLongBag
-
-
Method Details
-
with
- Specified by:
with
in interfaceMutableLongBag
- Specified by:
with
in interfaceMutableLongCollection
- Overrides:
with
in classAbstractSynchronizedLongCollection
-
without
- Specified by:
without
in interfaceMutableLongBag
- Specified by:
without
in interfaceMutableLongCollection
- Overrides:
without
in classAbstractSynchronizedLongCollection
-
withAll
- Specified by:
withAll
in interfaceMutableLongBag
- Specified by:
withAll
in interfaceMutableLongCollection
- Overrides:
withAll
in classAbstractSynchronizedLongCollection
-
withoutAll
- 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
Description copied from interface:LongBag
For each distinct item, with the number of occurrences, execute the specified procedure.- Specified by:
forEachWithOccurrences
in interfaceLongBag
-
select
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
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
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
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
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
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
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
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
Description copied from interface:LongIterable
Returns a LazyLongIterable adapter wrapping the source LongIterable.- Specified by:
asLazy
in interfaceLongIterable
- Overrides:
asLazy
in classAbstractSynchronizedLongCollection
-
asUnmodifiable
- Specified by:
asUnmodifiable
in interfaceMutableLongBag
- Specified by:
asUnmodifiable
in interfaceMutableLongCollection
- Overrides:
asUnmodifiable
in classAbstractSynchronizedLongCollection
-
asSynchronized
- Specified by:
asSynchronized
in interfaceMutableLongBag
- Specified by:
asSynchronized
in interfaceMutableLongCollection
- Overrides:
asSynchronized
in classAbstractSynchronizedLongCollection
-
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
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.
-