public class SynchronizedSortedBag extends SynchronizedBag implements SortedBag
SortedBag
to synchronize its behaviour
for a multi-threaded environment.
Methods are synchronized, then forwarded to the decorated bag. Iterators must be separately synchronized around the loop.
This class is Serializable from Commons Collections 3.1.
Modifier and Type | Method and Description |
---|---|
java.util.Comparator |
comparator()
Returns the comparator associated with this sorted set, or null
if it uses its elements' natural ordering.
|
static SortedBag |
decorate(SortedBag bag)
Factory method to create a synchronized sorted bag.
|
java.lang.Object |
first()
Returns the first (lowest) member.
|
java.lang.Object |
last()
Returns the last (highest) member.
|
add, decorate, getCount, remove, uniqueSet
add, addAll, clear, contains, containsAll, decorate, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
add, add, containsAll, getCount, iterator, remove, remove, removeAll, retainAll, size, uniqueSet
public static SortedBag decorate(SortedBag bag)
bag
- the bag to decorate, must not be nulljava.lang.IllegalArgumentException
- if bag is nullpublic java.lang.Object first()
SortedBag
public java.lang.Object last()
SortedBag
public java.util.Comparator comparator()
SortedBag
comparator
in interface SortedBag
Copyright © 2010 - 2020 Adobe. All Rights Reserved