Package org.eclipse.collections.impl.set.sorted.mutable
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
.
-
ClassesClassDescriptionThis class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.A synchronized view of a
MutableSortedSet
.An unmodifiable view of a SortedSet.