Class SynchronizedIntCollection
- java.lang.Object
-
- org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedIntCollection
-
- org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedIntCollection
-
- All Implemented Interfaces:
java.io.Serializable
,MutableIntCollection
,IntIterable
,PrimitiveIterable
public class SynchronizedIntCollection extends AbstractSynchronizedIntCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.- Since:
- 4.0.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description protected
SynchronizedIntCollection(MutableIntCollection collection)
protected
SynchronizedIntCollection(MutableIntCollection collection, java.lang.Object newLock)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableIntCollection
newEmpty()
Creates a new empty mutable version of the same collection type.static SynchronizedIntCollection
of(MutableIntCollection collection)
This method will take a MutableIntCollection and wrap it directly in a SynchronizedIntCollection.static SynchronizedIntCollection
of(MutableIntCollection collection, java.lang.Object lock)
This method will take a MutableIntCollection and wrap it directly in a SynchronizedIntCollection.-
Methods inherited from class org.eclipse.collections.impl.collection.mutable.primitive.AbstractSynchronizedIntCollection
add, addAll, addAll, allSatisfy, anySatisfy, appendString, appendString, appendString, asLazy, asSynchronized, asUnmodifiable, average, chunk, clear, collect, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, getIntCollection, getLock, injectInto, intIterator, isEmpty, makeString, makeString, makeString, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, notEmpty, reduce, reduceIfEmpty, reject, remove, removeAll, removeAll, removeIf, retainAll, retainAll, select, size, sum, toArray, toArray, toBag, toImmutable, toList, toSet, toSortedArray, toSortedList, toString, with, withAll, without, withoutAll
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.collections.api.IntIterable
averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, flatCollect, forEach, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, medianIfEmpty, reject, select, summaryStatistics, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.collection.primitive.MutableIntCollection
tap
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SynchronizedIntCollection
protected SynchronizedIntCollection(MutableIntCollection collection)
-
SynchronizedIntCollection
protected SynchronizedIntCollection(MutableIntCollection collection, java.lang.Object newLock)
-
-
Method Detail
-
of
public static SynchronizedIntCollection of(MutableIntCollection collection)
This method will take a MutableIntCollection and wrap it directly in a SynchronizedIntCollection.
-
of
public static SynchronizedIntCollection of(MutableIntCollection collection, java.lang.Object lock)
This method will take a MutableIntCollection and wrap it directly in a SynchronizedIntCollection. Additionally, a developer specifies which lock to use with the collection.
-
newEmpty
public MutableIntCollection newEmpty()
Description copied from interface:MutableIntCollection
Creates a new empty mutable version of the same collection type.- Since:
- 9.2.
-
-