Interface ImmutableSortedSetFactory
-
public interface ImmutableSortedSetFactory
-
-
Method Summary
-
-
-
Method Detail
-
empty
<T> ImmutableSortedSet<T> empty()
- Since:
- 6.0
-
empty
<T> ImmutableSortedSet<T> empty(Comparator<? super T> comparator)
- Since:
- 7.0
-
of
<T> ImmutableSortedSet<T> of()
Same asempty().
-
with
<T> ImmutableSortedSet<T> with()
Same asempty().
-
of
<T> ImmutableSortedSet<T> of(T... items)
Same aswith(Object[]).
-
with
<T> ImmutableSortedSet<T> with(T... items)
-
ofAll
<T> ImmutableSortedSet<T> ofAll(Iterable<? extends T> items)
Same aswithAll(Iterable).
-
withAll
<T> ImmutableSortedSet<T> withAll(Iterable<? extends T> items)
-
of
<T> ImmutableSortedSet<T> of(Comparator<? super T> comparator)
Same aswith(Comparator).
-
with
<T> ImmutableSortedSet<T> with(Comparator<? super T> comparator)
-
of
<T> ImmutableSortedSet<T> of(Comparator<? super T> comparator, T... items)
Same aswith(Comparator, Object[]).
-
with
<T> ImmutableSortedSet<T> with(Comparator<? super T> comparator, T... items)
-
ofAll
<T> ImmutableSortedSet<T> ofAll(Comparator<? super T> comparator, Iterable<? extends T> items)
Same aswithAll(Comparator, Iterable).
-
withAll
<T> ImmutableSortedSet<T> withAll(Comparator<? super T> comparator, Iterable<? extends T> items)
-
ofSortedSet
<T> ImmutableSortedSet<T> ofSortedSet(SortedSet<T> set)
Same aswithSortedSet(SortedSet).
-
withSortedSet
<T> ImmutableSortedSet<T> withSortedSet(SortedSet<T> set)
-
-