Class SynchronizedSortedSet
- java.lang.Object
-
- org.apache.commons.collections.collection.SynchronizedCollection
-
- org.apache.commons.collections.set.SynchronizedSortedSet
-
- All Implemented Interfaces:
Serializable,Iterable,Collection,Set,SortedSet
@Deprecated(since="2021-04-30") public class SynchronizedSortedSet extends SynchronizedCollection implements SortedSet
Deprecated.Commons Collections 3 is in maintenance mode. Commons Collections 4 should be used instead.Decorates anotherSortedSetto synchronize its behaviour for a multi-threaded environment.Methods are synchronized, then forwarded to the decorated set.
This class is Serializable from Commons Collections 3.1.
- Since:
- Commons Collections 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Comparatorcomparator()Deprecated.static SortedSetdecorate(SortedSet set)Deprecated.Factory method to create a synchronized set.Objectfirst()Deprecated.SortedSetheadSet(Object toElement)Deprecated.Objectlast()Deprecated.SortedSetsubSet(Object fromElement, Object toElement)Deprecated.SortedSettailSet(Object fromElement)Deprecated.-
Methods inherited from class org.apache.commons.collections.collection.SynchronizedCollection
add, addAll, clear, contains, containsAll, decorate, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
-
Methods inherited from interface java.util.SortedSet
spliterator
-
-
-
-
Method Detail
-
decorate
public static SortedSet decorate(SortedSet set)
Deprecated.Factory method to create a synchronized set.- Parameters:
set- the set to decorate, must not be null- Throws:
IllegalArgumentException- if set is null
-
comparator
public Comparator comparator()
Deprecated.- Specified by:
comparatorin interfaceSortedSet
-
-