Class MutableSortedSetFactoryImpl
- java.lang.Object
-
- org.eclipse.collections.impl.set.sorted.mutable.MutableSortedSetFactoryImpl
-
- All Implemented Interfaces:
MutableSortedSetFactory
public class MutableSortedSetFactoryImpl extends Object implements MutableSortedSetFactory
-
-
Field Summary
Fields Modifier and Type Field Description static MutableSortedSetFactoryINSTANCE
-
Constructor Summary
Constructors Constructor Description MutableSortedSetFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> MutableSortedSet<T>empty()<T> MutableSortedSet<T>empty(Comparator<? super T> comparator)<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(Iterable<? extends T> items)<T> MutableSortedSet<T>ofAll(Comparator<? super T> comparator, 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(Iterable<? extends T> items)<T> MutableSortedSet<T>withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
-
-
-
Field Detail
-
INSTANCE
public static final MutableSortedSetFactory INSTANCE
-
-
Method Detail
-
empty
public <T> MutableSortedSet<T> empty()
- Specified by:
emptyin interfaceMutableSortedSetFactory
-
empty
public <T> MutableSortedSet<T> empty(Comparator<? super T> comparator)
- Specified by:
emptyin interfaceMutableSortedSetFactory
-
of
public <T> MutableSortedSet<T> of()
- Specified by:
ofin interfaceMutableSortedSetFactory
-
with
public <T> MutableSortedSet<T> with()
- Specified by:
within interfaceMutableSortedSetFactory
-
of
public <T> MutableSortedSet<T> of(T... items)
- Specified by:
ofin interfaceMutableSortedSetFactory
-
with
public <T> MutableSortedSet<T> with(T... items)
- Specified by:
within interfaceMutableSortedSetFactory
-
ofAll
public <T> MutableSortedSet<T> ofAll(Iterable<? extends T> items)
- Specified by:
ofAllin interfaceMutableSortedSetFactory
-
withAll
public <T> MutableSortedSet<T> withAll(Iterable<? extends T> items)
- Specified by:
withAllin interfaceMutableSortedSetFactory
-
of
public <T> MutableSortedSet<T> of(Comparator<? super T> comparator)
- Specified by:
ofin interfaceMutableSortedSetFactory
-
with
public <T> MutableSortedSet<T> with(Comparator<? super T> comparator)
- Specified by:
within interfaceMutableSortedSetFactory
-
of
public <T> MutableSortedSet<T> of(Comparator<? super T> comparator, T... items)
- Specified by:
ofin interfaceMutableSortedSetFactory
-
with
public <T> MutableSortedSet<T> with(Comparator<? super T> comparator, T... items)
- Specified by:
within interfaceMutableSortedSetFactory
-
ofAll
public <T> MutableSortedSet<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
- Specified by:
ofAllin interfaceMutableSortedSetFactory
-
withAll
public <T> MutableSortedSet<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
- Specified by:
withAllin interfaceMutableSortedSetFactory
-
-