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 type MutableSortedSet
.
Class | Description |
---|---|
MutableSortedSetFactoryImpl | |
SortedSetAdapter<T> |
This class provides a MutableSortedSet wrapper around a JDK Collections SortedSet interface instance.
|
SynchronizedSortedSet<T> |
A synchronized view of a
MutableSortedSet . |
TreeSortedSet<T> | |
UnmodifiableSortedSet<T> |
An unmodifiable view of a SortedSet.
|
Copyright © 2004–2019. All rights reserved.