MutableSortedSetFactorypublic class MutableSortedSetFactoryImpl extends Object implements MutableSortedSetFactory
| Modifier and Type | Field | Description |
|---|---|---|
static MutableSortedSetFactory |
INSTANCE |
| Constructor | Description |
|---|---|
MutableSortedSetFactoryImpl() |
| Modifier and Type | Method | Description |
|---|---|---|
<T> MutableSortedSet<T> |
empty() |
|
<T> MutableSortedSet<T> |
of() |
Same as
MutableSortedSetFactory.empty(). |
<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 as
MutableSortedSetFactory.empty(). |
<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) |
public static final MutableSortedSetFactory INSTANCE
public <T> MutableSortedSet<T> empty()
empty in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> of()
MutableSortedSetFactoryMutableSortedSetFactory.empty().of in interface MutableSortedSetFactorypublic <T> MutableSortedSet<T> with()
MutableSortedSetFactoryMutableSortedSetFactory.empty().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–2019. All rights reserved.