Interface ReadOnlySequencedSet<E>

Type Parameters:
E - the element type
All Superinterfaces:
Iterable<E>, ReadOnlyCollection<E>, ReadOnlySequencedCollection<E>, ReadOnlySet<E>
All Known Subinterfaces:
ImmutableNavigableSet<E>, ImmutableSequencedSet<E>, ImmutableSortedSet<E>, ReadOnlyNavigableSet<E>, ReadOnlySortedSet<E>
All Known Implementing Classes:
ChampVectorSet, MutableChampVectorSet, MutableRedBlackSet, ReadOnlyNavigableSetFacade, ReadOnlySequencedSetFacade, ReadOnlySortedSetFacade, RedBlackSet

public interface ReadOnlySequencedSet<E> extends ReadOnlySet<E>, ReadOnlySequencedCollection<E>
A read-only interface to a sequenced set. A sequenced set is a collection that is both a sequenced collection and a set.

References:

JEP draft: Sequenced Collections
java.ne