ImmutableSortedSetFactoryImplpublic interface ImmutableSortedSetFactory
<T> ImmutableSortedSet<T> empty()
<T> ImmutableSortedSet<T> empty(Comparator<? super T> comparator)
<T> ImmutableSortedSet<T> of()
empty().<T> ImmutableSortedSet<T> with()
empty().<T> ImmutableSortedSet<T> of(T... items)
with(Object[]).<T> ImmutableSortedSet<T> with(T... items)
<T> ImmutableSortedSet<T> ofAll(Iterable<? extends T> items)
withAll(Iterable).<T> ImmutableSortedSet<T> withAll(Iterable<? extends T> items)
<T> ImmutableSortedSet<T> of(Comparator<? super T> comparator)
with(Comparator).<T> ImmutableSortedSet<T> with(Comparator<? super T> comparator)
<T> ImmutableSortedSet<T> of(Comparator<? super T> comparator, T... items)
with(Comparator, Object[]).<T> ImmutableSortedSet<T> with(Comparator<? super T> comparator, T... items)
<T> ImmutableSortedSet<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
withAll(Comparator, Iterable).<T> ImmutableSortedSet<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
<T> ImmutableSortedSet<T> ofSortedSet(SortedSet<T> set)
withSortedSet(SortedSet).<T> ImmutableSortedSet<T> withSortedSet(SortedSet<T> set)
Copyright © 2004–2019. All rights reserved.