Interface ReferenceSortedSet<K>

All Superinterfaces:
Collection<K>, Iterable<K>, ObjectBidirectionalIterable<K>, ObjectIterable<K>, ReferenceCollection<K>, ReferenceSet<K>, Set<K>, SortedSet<K>
All Known Implementing Classes:
AbstractReferenceSortedSet, ReferenceLinkedOpenHashSet, ReferenceSortedSets.EmptySet, ReferenceSortedSets.Singleton, ReferenceSortedSets.SynchronizedSortedSet, ReferenceSortedSets.UnmodifiableSortedSet

public interface ReferenceSortedSet<K> extends ReferenceSet<K>, SortedSet<K>, ObjectBidirectionalIterable<K>
A type-specific SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing.

Additionally, this interface strengthens iterator(), SortedSet.comparator() (for primitive types), SortedSet.subSet(Object,Object), SortedSet.headSet(Object) and SortedSet.tailSet(Object).

See Also: