Interface ByteSortedSet

All Superinterfaces:
ByteBidirectionalIterable, ByteCollection, ByteIterable, ByteSet, Collection<Byte>, Iterable<Byte>, Set<Byte>, SortedSet<Byte>
All Known Implementing Classes:
AbstractByteSortedSet, ByteAVLTreeSet, ByteLinkedOpenCustomHashSet, ByteLinkedOpenHashSet, ByteRBTreeSet, ByteSortedSets.EmptySet, ByteSortedSets.Singleton, ByteSortedSets.SynchronizedSortedSet, ByteSortedSets.UnmodifiableSortedSet

public interface ByteSortedSet extends ByteSet, SortedSet<Byte>, ByteBidirectionalIterable
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: