public class MutableSortedSetFactoryImpl extends Object implements MutableSortedSetFactory
| Modifier and Type | Field and Description |
|---|---|
static MutableSortedSetFactory |
INSTANCE |
| Constructor and Description |
|---|
MutableSortedSetFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
<T> MutableSortedSet<T> |
empty() |
<T> MutableSortedSet<T> |
of() |
<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(Comparator<? super T> comparator,
Iterable<? extends T> items) |
<T> MutableSortedSet<T> |
ofAll(Iterable<? extends T> items) |
<T> MutableSortedSet<T> |
with() |
<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(Comparator<? super T> comparator,
Iterable<? extends T> items) |
<T> MutableSortedSet<T> |
withAll(Iterable<? extends T> items) |
public static final MutableSortedSetFactory INSTANCE
public <T> MutableSortedSet<T> empty()
empty in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> of()
of in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> with()
with in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> of(T... items)
of in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> with(T... items)
with in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> ofAll(Iterable<? extends T> items)
ofAll in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> withAll(Iterable<? extends T> items)
withAll in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> of(Comparator<? super T> comparator)
of in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> with(Comparator<? super T> comparator)
with in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> of(Comparator<? super T> comparator, T... items)
of in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> with(Comparator<? super T> comparator, T... items)
with in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
ofAll in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
withAll in interface MutableSortedSetFactoryCopyright © 2004–2022. All rights reserved.