Interface LongSortedSet

All Superinterfaces:
Collection<Long>, Iterable<Long>, LongBidirectionalIterable, LongCollection, LongIterable, LongSet, Set<Long>, SortedSet<Long>
All Known Implementing Classes:
AbstractLongSortedSet, LongAVLTreeSet, LongLinkedOpenCustomHashSet, LongLinkedOpenHashSet, LongRBTreeSet, LongSortedSets.EmptySet, LongSortedSets.Singleton, LongSortedSets.SynchronizedSortedSet, LongSortedSets.UnmodifiableSortedSet

public interface LongSortedSet extends LongSet, SortedSet<Long>, LongBidirectionalIterable
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: