Class SynchronizedSortedSet<T>

All Implemented Interfaces:
Serializable, Cloneable, Comparable<SortedSetIterable<T>>, Iterable<T>, Collection<T>, Set<T>, SortedSet<T>, MutableCollection<T>, InternalIterable<T>, OrderedIterable<T>, ReversibleIterable<T>, SortedIterable<T>, RichIterable<T>, MutableSetIterable<T>, SetIterable<T>, MutableSortedSet<T>, SortedSetIterable<T>

public class SynchronizedSortedSet<T>
extends AbstractSynchronizedMutableCollection<T>
implements MutableSortedSet<T>, Serializable
A synchronized view of a MutableSortedSet. It is imperative that the user manually synchronize on the collection when iterating over it using the standard JDK iterator or JDK 5 for loop, as per Collections.synchronizedCollection(Collection).
See Also:
MutableSortedSet.asSynchronized(), Serialized Form