Interface MutableSortedSetFactory
-
public interface MutableSortedSetFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> MutableSortedSet<T>empty()<T> MutableSortedSet<T>empty(Comparator<? super T> comparator)<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)
-
-
-
Method Detail
-
empty
<T> MutableSortedSet<T> empty()
- Since:
- 6.0
-
empty
<T> MutableSortedSet<T> empty(Comparator<? super T> comparator)
- Since:
- 12.0
-
of
<T> MutableSortedSet<T> of()
Same asempty().
-
with
<T> MutableSortedSet<T> with()
Same asempty().
-
of
<T> MutableSortedSet<T> of(T... items)
-
with
<T> MutableSortedSet<T> with(T... items)
-
ofAll
<T> MutableSortedSet<T> ofAll(Iterable<? extends T> items)
-
withAll
<T> MutableSortedSet<T> withAll(Iterable<? extends T> items)
-
of
<T> MutableSortedSet<T> of(Comparator<? super T> comparator)
-
with
<T> MutableSortedSet<T> with(Comparator<? super T> comparator)
-
of
<T> MutableSortedSet<T> of(Comparator<? super T> comparator, T... items)
-
with
<T> MutableSortedSet<T> with(Comparator<? super T> comparator, T... items)
-
ofAll
<T> MutableSortedSet<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
-
withAll
<T> MutableSortedSet<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
-
-