Interface MutableSortedSetFactory
- All Known Implementing Classes:
MutableSortedSetFactoryImpl
public interface MutableSortedSetFactory
-
Method Summary
Modifier and Type Method Description <T> MutableSortedSet<T>empty()<T> MutableSortedSet<T>of()Same asempty().<T> MutableSortedSet<T>of(Comparator<? super T> comparator)<T> MutableSortedSet<T>of(Comparator<? super T> comparator, T... items)<T> MutableSortedSet<T>of(T... items)<T> MutableSortedSet<T>ofAll(Iterable<? extends T> items)<T> MutableSortedSet<T>ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)<T> MutableSortedSet<T>with()Same asempty().<T> MutableSortedSet<T>with(Comparator<? super T> comparator)<T> MutableSortedSet<T>with(Comparator<? super T> comparator, T... items)<T> MutableSortedSet<T>with(T... items)<T> MutableSortedSet<T>withAll(Iterable<? extends T> items)<T> MutableSortedSet<T>withAll(Comparator<? super T> comparator, Iterable<? extends T> items)