public class ImmutableSortedBagFactoryImpl
extends java.lang.Object
implements com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactory
| Constructor and Description |
|---|
ImmutableSortedBagFactoryImpl() |
| Modifier and Type | Method and Description |
|---|---|
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
empty() |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
empty(java.util.Comparator<? super T> comparator) |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
of()
Same as
ImmutableSortedBagFactory.empty(). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
of(java.util.Comparator<? super T> comparator)
Same as
ImmutableSortedBagFactory.with(Comparator). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
of(java.util.Comparator<? super T> comparator,
T... items)
Same as
ImmutableSortedBagFactory.with(Comparator, Object[]). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
of(T... items)
Same as
ImmutableSortedBagFactory.with(Object[]). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
ofAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items)
Same as
ImmutableSortedBagFactory.withAll(Comparator, Iterable). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
ofAll(java.lang.Iterable<? extends T> items)
Same as
ImmutableSortedBagFactory.withAll(Iterable). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
ofSortedBag(com.gs.collections.api.bag.sorted.SortedBag<T> bag)
Same as
ImmutableSortedBagFactory.withSortedBag(SortedBag). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
with()
Same as
ImmutableSortedBagFactory.empty(). |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
with(java.util.Comparator<? super T> comparator) |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
with(java.util.Comparator<? super T> comparator,
T... items) |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
with(T... items) |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
withAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
withAll(java.lang.Iterable<? extends T> items) |
<T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> |
withSortedBag(com.gs.collections.api.bag.sorted.SortedBag<T> bag) |
public <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> empty()
empty in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> empty(java.util.Comparator<? super T> comparator)
empty in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> of()
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.empty().of in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> with()
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.empty().with in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> of(T... items)
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.with(Object[]).of in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> with(T... items)
with in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> ofAll(java.lang.Iterable<? extends T> items)
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.withAll(Iterable).ofAll in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> withAll(java.lang.Iterable<? extends T> items)
withAll in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> of(java.util.Comparator<? super T> comparator)
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.with(Comparator).of in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> with(java.util.Comparator<? super T> comparator)
with in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> of(java.util.Comparator<? super T> comparator,
T... items)
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.with(Comparator, Object[]).of in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> with(java.util.Comparator<? super T> comparator,
T... items)
with in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> ofAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items)
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.withAll(Comparator, Iterable).ofAll in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> withAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items)
withAll in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> ofSortedBag(com.gs.collections.api.bag.sorted.SortedBag<T> bag)
com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactoryImmutableSortedBagFactory.withSortedBag(SortedBag).ofSortedBag in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactorypublic <T> com.gs.collections.api.bag.sorted.ImmutableSortedBag<T> withSortedBag(com.gs.collections.api.bag.sorted.SortedBag<T> bag)
withSortedBag in interface com.gs.collections.api.factory.bag.sorted.ImmutableSortedBagFactory