Interface MutableSortedSetFactory
- All Known Implementing Classes:
MutableSortedSetFactoryImpl
public interface MutableSortedSetFactory
-
Method Summary
Modifier and TypeMethodDescription<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> <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> <T> MutableSortedSet
<T> withAll
(Comparator<? super T> comparator, Iterable<? extends T> items)