ImmutableSortedSet<ImmutableMap.ImmutableEntry<K,V>> |
ImmutableTreeMap.entrySet() |
Returns a Set view of the entries contained in this map.
|
ImmutableSortedSet<E> |
ImmutableSortedSet.headSet(E toElement) |
Returns a view of the portion of this immutable set whose elements are strictly less than toElement.
|
ImmutableSortedSet<E> |
ImmutableTreeSet.headSet(E toElement) |
Returns a view of the portion of this immutable set whose elements are strictly less than toElement.
|
ImmutableSortedSet<K> |
ImmutableNavigableMap.keySet() |
|
ImmutableSortedSet<K> |
ImmutableSortedMap.keySet() |
Return an ImmutableSortedSet view of the keys contained in this immutable map.
|
ImmutableSortedSet<K> |
ImmutableTreeMap.keySet() |
|
static <E> ImmutableSortedSet<E> |
ImmutableSortedSet.of() |
Return an empty ImmutableSortedSet, backed by a TreeSet.
|
static <E> ImmutableSortedSet<E> |
ImmutableSortedSet.of(E v1) |
Return an ImmutableSortedSet with 1 entry, backed by a TreeSet.
|
static <E> ImmutableSortedSet<E> |
ImmutableSortedSet.of(E v1,
E v2) |
Return an ImmutableSortedSet with 2 entries, backed by a TreeSet.
|
static <E> ImmutableSortedSet<E> |
ImmutableSortedSet.of(E v1,
E v2,
E v3) |
Return an ImmutableSortedSet with 3 entries, backed by a TreeSet.
|
static <E> ImmutableSortedSet<E> |
ImmutableSortedSet.of(E v1,
E v2,
E v3,
E v4) |
Return an ImmutableSortedSet with 4 entries, backed by a TreeSet.
|
static <E> ImmutableSortedSet<E> |
ImmutableSortedSet.of(E v1,
E v2,
E v3,
E v4,
E v5,
E... vn) |
Return an ImmutableSortedSet with 5 or more entries, backed by a TreeSet.
|
ImmutableSortedSet<E> |
ImmutableSortedSet.subSet(E fromElement,
E toElement) |
Returns a view of the portion of this immutable set whose elements range from fromElement, inclusive, to
toElement, exclusive.
|
ImmutableSortedSet<E> |
ImmutableTreeSet.subSet(E fromElement,
E toElement) |
Returns a view of the portion of this immutable set whose elements range from fromElement, inclusive, to
toElement, exclusive.
|
ImmutableSortedSet<E> |
ImmutableSortedSet.tailSet(E fromElement) |
Returns a view of the portion of this immutable set whose elements are greater than or equal to fromElement.
|
ImmutableSortedSet<E> |
ImmutableTreeSet.tailSet(E fromElement) |
Returns a view of the portion of this immutable set whose elements are greater than or equal to fromElement.
|
ImmutableSortedSet<V> |
ImmutableTreeMap.values() |
|