Package org.eclipse.collections.impl.set.sorted.mutable
This package contains implementations of
MutableSortedSet.
This package contains 4 sorted mutable set implementation:
-
SortedSetAdapter- a class which provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance. -
SynchronizedSortedSet- a synchronized view of a SortedSet. -
TreeSortedSet- a sorted set backed by Tree data structure.. -
UnmodifiableSortedSet- an unmodifiable view of a SortedSet.
This package contains 1 factory implementation:
-
MutableSortedSetFactoryImpl- a factory which creates instances of typeMutableSortedSet.
-
Class Summary Class Description MutableSortedSetFactoryImpl SortedSetAdapter<T> This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.SynchronizedSortedSet<T> A synchronized view of aMutableSortedSet.TreeSortedSet<T> UnmodifiableSortedSet<T> An unmodifiable view of a SortedSet.