Interface CharSortedSet

All Superinterfaces:
CharBidirectionalIterable, CharCollection, CharIterable, CharSet, Collection<Character>, Iterable<Character>, Set<Character>, SortedSet<Character>
All Known Implementing Classes:
AbstractCharSortedSet, CharAVLTreeSet, CharLinkedOpenCustomHashSet, CharLinkedOpenHashSet, CharRBTreeSet, CharSortedSets.EmptySet, CharSortedSets.Singleton, CharSortedSets.SynchronizedSortedSet, CharSortedSets.UnmodifiableSortedSet

public interface CharSortedSet extends CharSet, SortedSet<Character>, CharBidirectionalIterable
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: