public abstract static class WrapperCollections.AbstractWrapperSortedSet<E> extends WrapperCollections.AbstractWrapperSet<E> implements SortedSet<E>
m_colDelegate| Modifier | Constructor and Description |
|---|---|
protected |
AbstractWrapperSortedSet()
Default constructor
|
protected |
AbstractWrapperSortedSet(SortedSet<E> set)
Create an AbstractWrapperSortedSet which delegates to the specified
SortedSet.
|
| Modifier and Type | Method and Description |
|---|---|
Comparator<? super E> |
comparator() |
E |
first() |
protected SortedSet<E> |
getDelegate()
Return the SortedSet to which all operations should be delegated to.
|
SortedSet<E> |
headSet(E oTo) |
E |
last() |
SortedSet<E> |
subSet(E oFrom,
E oTo) |
SortedSet<E> |
tailSet(E oFrom) |
add, addAll, clear, contains, containsAll, equals, forEach, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitspliteratoradd, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArrayparallelStream, removeIf, streamprotected AbstractWrapperSortedSet()
protected SortedSet<E> getDelegate()
getDelegate in class WrapperCollections.AbstractWrapperSet<E>public Comparator<? super E> comparator()
comparator in interface SortedSet<E>