|
||||||||||
| 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 | ||
|---|---|---|
ImmutableSortedSet<E> |
ImmutableSortedSet.Builder.build()
Returns a newly-created ImmutableSortedSet based on the contents
of the Builder and its 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.copyOf(java.util.Iterator<? 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(E... elements)
Returns an immutable sorted set containing the given elements sorted by their natural ordering. |
|
static
|
ImmutableSortedSet.of(E element)
Returns an immutable sorted set containing a single element. |
|
ImmutableSortedSet<E> |
ImmutableSortedSet.subSet(E fromElement,
E toElement)
|
|
ImmutableSortedSet<E> |
ImmutableSortedSet.tailSet(E fromElement)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||