ImmutableSortedBagFactoryImplpublic interface ImmutableSortedBagFactory
ImmutableSortedBag.| Modifier and Type | Method | Description |
|---|---|---|
<T> ImmutableSortedBag<T> |
empty() |
|
<T> ImmutableSortedBag<T> |
empty(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedBag<T> |
of() |
Same as
empty(). |
<T> ImmutableSortedBag<T> |
of(java.util.Comparator<? super T> comparator) |
Same as
with(Comparator). |
<T> ImmutableSortedBag<T> |
of(java.util.Comparator<? super T> comparator,
T... items) |
Same as
with(Comparator, Object[]). |
<T> ImmutableSortedBag<T> |
of(T... items) |
Same as
with(Object[]). |
<T> ImmutableSortedBag<T> |
ofAll(java.lang.Iterable<? extends T> items) |
Same as
withAll(Iterable). |
<T> ImmutableSortedBag<T> |
ofAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
Same as
withAll(Comparator, Iterable). |
<T> ImmutableSortedBag<T> |
ofSortedBag(SortedBag<T> bag) |
Same as
withSortedBag(SortedBag). |
<T> ImmutableSortedBag<T> |
with() |
Same as
empty(). |
<T> ImmutableSortedBag<T> |
with(java.util.Comparator<? super T> comparator) |
|
<T> ImmutableSortedBag<T> |
with(java.util.Comparator<? super T> comparator,
T... items) |
|
<T> ImmutableSortedBag<T> |
with(T... items) |
|
<T> ImmutableSortedBag<T> |
withAll(java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedBag<T> |
withAll(java.util.Comparator<? super T> comparator,
java.lang.Iterable<? extends T> items) |
|
<T> ImmutableSortedBag<T> |
withSortedBag(SortedBag<T> bag) |
<T> ImmutableSortedBag<T> empty()
<T> ImmutableSortedBag<T> empty(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T> of()
empty().<T> ImmutableSortedBag<T> with()
empty().<T> ImmutableSortedBag<T> of(T... items)
with(Object[]).<T> ImmutableSortedBag<T> with(T... items)
<T> ImmutableSortedBag<T> ofAll(java.lang.Iterable<? extends T> items)
withAll(Iterable).<T> ImmutableSortedBag<T> withAll(java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T> of(java.util.Comparator<? super T> comparator, T... items)
with(Comparator, Object[]).<T> ImmutableSortedBag<T> with(java.util.Comparator<? super T> comparator, T... items)
<T> ImmutableSortedBag<T> of(java.util.Comparator<? super T> comparator)
with(Comparator).<T> ImmutableSortedBag<T> with(java.util.Comparator<? super T> comparator)
<T> ImmutableSortedBag<T> ofAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
withAll(Comparator, Iterable).<T> ImmutableSortedBag<T> withAll(java.util.Comparator<? super T> comparator, java.lang.Iterable<? extends T> items)
<T> ImmutableSortedBag<T> ofSortedBag(SortedBag<T> bag)
withSortedBag(SortedBag).<T> ImmutableSortedBag<T> withSortedBag(SortedBag<T> bag)
Copyright © 2004–2017. All rights reserved.