|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ImmutableSortedSet | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. |
| Uses of ImmutableSortedSet in com.google.common.collect |
|---|
| Methods in com.google.common.collect that return ImmutableSortedSet | ||
|---|---|---|
static
|
ImmutableSortedSet.copyOf(java.util.Comparator<? super E> comparator,
java.lang.Iterable<? extends E> elements)
Returns an immutable sorted set containing the given elements sorted by the provided comparator. |
|
static
|
ImmutableSortedSet.copyOf(java.lang.Iterable<? extends E> elements)
Returns an immutable sorted set containing the given elements sorted by their natural ordering. |
|
static
|
ImmutableSortedSet.copyOfSorted(java.util.SortedSet<E> sortedSet)
Returns an immutable sorted set containing the elements of a sorted set, sorted by the same Comparator. |
|
ImmutableSortedSet<E> |
ImmutableSortedSet.headSet(E toElement)
|
|
static
|
ImmutableSortedSet.of()
Returns the empty immutable sorted set. |
|
static
|
ImmutableSortedSet.of(java.util.Comparator<? super E> comparator,
E... elements)
Returns an immutable sorted set containing the given elements sorted by the provided comparator. |
|
static
|
ImmutableSortedSet.of(E... elements)
Returns an immutable sorted set containing the given elements sorted by their natural ordering. |
|
ImmutableSortedSet<E> |
ImmutableSortedSet.subSet(E fromElement,
E toElement)
|
|
ImmutableSortedSet<E> |
ImmutableSortedSet.tailSet(E fromElement)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||