Class WrapperCollections.AbstractWrapperSortedSet<E>

All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, SequencedCollection<E>, SequencedSet<E>, Set<E>, SortedSet<E>
Direct Known Subclasses:
ImmutableArrayList.SortedSetView
Enclosing class:
WrapperCollections

public abstract static class WrapperCollections.AbstractWrapperSortedSet<E> extends WrapperCollections.AbstractWrapperSet<E> implements SortedSet<E>
SortedSet implementation which delegates all calls to another SortedSet.
See Also:
  • Constructor Details

    • AbstractWrapperSortedSet

      protected AbstractWrapperSortedSet()
      Default constructor
    • AbstractWrapperSortedSet

      protected AbstractWrapperSortedSet(SortedSet<E> set)
      Create an AbstractWrapperSortedSet which delegates to the specified SortedSet.
      Parameters:
      set - the SortedSet to delegate all calls to
  • Method Details