public interface ImmutableSortedBagFactory
ImmutableSortedBag
.<T> ImmutableSortedBag<T> empty()
<T> ImmutableSortedBag<T> empty(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(Iterable<? extends T> items)
withAll(Iterable)
.<T> ImmutableSortedBag<T> withAll(Iterable<? extends T> items)
<T> ImmutableSortedBag<T> of(Comparator<? super T> comparator, T... items)
with(Comparator, Object[])
.<T> ImmutableSortedBag<T> with(Comparator<? super T> comparator, T... items)
<T> ImmutableSortedBag<T> of(Comparator<? super T> comparator)
with(Comparator)
.<T> ImmutableSortedBag<T> with(Comparator<? super T> comparator)
<T> ImmutableSortedBag<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
withAll(Comparator, Iterable)
.<T> ImmutableSortedBag<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
<T> ImmutableSortedBag<T> ofSortedBag(SortedBag<T> bag)
withSortedBag(SortedBag)
.<T> ImmutableSortedBag<T> withSortedBag(SortedBag<T> bag)
Copyright © 2004–2016. All rights reserved.