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