Interface IntSortedSet

All Superinterfaces:
Collection<Integer>, IntBidirectionalIterable, IntCollection, IntIterable, IntSet, Iterable<Integer>, Set<Integer>, SortedSet<Integer>
All Known Implementing Classes:
AbstractIntSortedSet, IntAVLTreeSet, IntLinkedOpenCustomHashSet, IntLinkedOpenHashSet, IntRBTreeSet, IntSortedSets.EmptySet, IntSortedSets.Singleton, IntSortedSets.SynchronizedSortedSet, IntSortedSets.UnmodifiableSortedSet

public interface IntSortedSet extends IntSet, SortedSet<Integer>, IntBidirectionalIterable
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: