Interface ImmutableSortedSet<T>

All Superinterfaces:
Comparable<SortedSetIterable<T>>, ImmutableCollection<T>, ImmutableSetIterable<T>, InternalIterable<T>, Iterable<T>, OrderedIterable<T>, ReversibleIterable<T>, RichIterable<T>, SetIterable<T>, SortedIterable<T>, SortedSetIterable<T>
All Known Implementing Classes:
AbstractImmutableSortedSet, ImmutableEmptySortedSet, ImmutableTreeSet

public interface ImmutableSortedSet<T> extends SortedSetIterable<T>, ImmutableSetIterable<T>
ImmutableSortedSet is the non-modifiable equivalent interface to MutableSortedSet. MutableSortedSet.toImmutable() will give you an appropriately trimmed implementation of ImmutableSortedSet. All ImmutableSortedSet implementations must implement the SortedSet interface in order to satisfy the Set.equals(Object) contract and be compared against other Sets.