Class SortedSetAdapter<T>

java.lang.Object
org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter<T>
org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<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 final class SortedSetAdapter<T> extends AbstractCollectionAdapter<T> implements Serializable, MutableSortedSet<T>
This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance. All of the MutableSortedSet interface methods are supported in addition to the JDK SortedSet interface methods.

To create a new wrapper around an existing SortedSet instance, use the adapt(SortedSet) factory method.

See Also: