Interface ShortSortedSet

All Superinterfaces:
Collection<Short>, Iterable<Short>, Set<Short>, ShortBidirectionalIterable, ShortCollection, ShortIterable, ShortSet, SortedSet<Short>
All Known Implementing Classes:
AbstractShortSortedSet, ShortAVLTreeSet, ShortLinkedOpenCustomHashSet, ShortLinkedOpenHashSet, ShortRBTreeSet, ShortSortedSets.EmptySet, ShortSortedSets.Singleton, ShortSortedSets.SynchronizedSortedSet, ShortSortedSets.UnmodifiableSortedSet

public interface ShortSortedSet extends ShortSet, SortedSet<Short>, ShortBidirectionalIterable
A type-specific SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing.

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

See Also: