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>

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 so they can satisfy the Set.equals(Object) contract and be compared against other Sets.