Uses of Class
org.apache.commons.collections4.collection.SynchronizedCollection
-
Packages that use SynchronizedCollection Package Description org.apache.commons.collections4.bag org.apache.commons.collections4.collection This package contains implementations of theCollection
interface.org.apache.commons.collections4.multiset This package contains implementations of theMultiSet
interface.org.apache.commons.collections4.queue This package contains implementations for theQueue
interface. -
-
Uses of SynchronizedCollection in org.apache.commons.collections4.bag
Subclasses of SynchronizedCollection in org.apache.commons.collections4.bag Modifier and Type Class Description class
SynchronizedBag<E>
Decorates anotherBag
to synchronize its behaviour for a multi-threaded environment.class
SynchronizedSortedBag<E>
Decorates anotherSortedBag
to synchronize its behaviour for a multi-threaded environment. -
Uses of SynchronizedCollection in org.apache.commons.collections4.collection
Methods in org.apache.commons.collections4.collection that return SynchronizedCollection Modifier and Type Method Description static <T> SynchronizedCollection<T>
SynchronizedCollection. synchronizedCollection(Collection<T> coll)
Factory method to create a synchronized collection. -
Uses of SynchronizedCollection in org.apache.commons.collections4.multiset
Subclasses of SynchronizedCollection in org.apache.commons.collections4.multiset Modifier and Type Class Description class
SynchronizedMultiSet<E>
Decorates anotherMultiSet
to synchronize its behaviour for a multi-threaded environment. -
Uses of SynchronizedCollection in org.apache.commons.collections4.queue
Subclasses of SynchronizedCollection in org.apache.commons.collections4.queue Modifier and Type Class Description class
SynchronizedQueue<E>
Decorates anotherQueue
to synchronize its behaviour for a multi-threaded environment.
-