MutableSortedBagFactoryImplpublic interface MutableSortedBagFactory
MutableSortedBag.| Modifier and Type | Method | Description |
|---|---|---|
<T> MutableSortedBag<T> |
empty() |
|
<T> MutableSortedBag<T> |
empty(Comparator<? super T> comparator) |
|
<T> MutableSortedBag<T> |
of() |
Same as
with(). |
<T> MutableSortedBag<T> |
of(Comparator<? super T> comparator) |
Same as
with(Comparator). |
<T> MutableSortedBag<T> |
of(Comparator<? super T> comparator,
T... elements) |
Same as
with(Comparator, Object[]). |
<T> MutableSortedBag<T> |
of(T... elements) |
Same as
with(Object[]). |
<T> MutableSortedBag<T> |
ofAll(Iterable<? extends T> items) |
Same as
withAll(Comparator, Iterable). |
<T> MutableSortedBag<T> |
ofAll(Comparator<? super T> comparator,
Iterable<? extends T> items) |
Same as
withAll(Comparator, Iterable) |
<T> MutableSortedBag<T> |
with() |
|
<T> MutableSortedBag<T> |
with(Comparator<? super T> comparator) |
|
<T> MutableSortedBag<T> |
with(Comparator<? super T> comparator,
T... elements) |
|
<T> MutableSortedBag<T> |
with(T... elements) |
|
<T> MutableSortedBag<T> |
withAll(Iterable<? extends T> items) |
|
<T> MutableSortedBag<T> |
withAll(Comparator<? super T> comparator,
Iterable<? extends T> items) |
<T> MutableSortedBag<T> empty()
<T> MutableSortedBag<T> empty(Comparator<? super T> comparator)
<T> MutableSortedBag<T> of()
with().<T> MutableSortedBag<T> with()
<T> MutableSortedBag<T> of(Comparator<? super T> comparator)
with(Comparator).<T> MutableSortedBag<T> with(Comparator<? super T> comparator)
<T> MutableSortedBag<T> of(T... elements)
with(Object[]).<T> MutableSortedBag<T> with(T... elements)
<T> MutableSortedBag<T> of(Comparator<? super T> comparator, T... elements)
with(Comparator, Object[]).<T> MutableSortedBag<T> with(Comparator<? super T> comparator, T... elements)
<T> MutableSortedBag<T> ofAll(Iterable<? extends T> items)
withAll(Comparator, Iterable).<T> MutableSortedBag<T> withAll(Iterable<? extends T> items)
<T> MutableSortedBag<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
withAll(Comparator, Iterable)<T> MutableSortedBag<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
Copyright © 2004–2019. All rights reserved.