| Package | Description |
|---|---|
| java.util |
| Modifier and Type | Class and Description |
|---|---|
class |
TreeSet<E>
TreeSet is an implementation of SortedSet.
|
| Modifier and Type | Method and Description |
|---|---|
NavigableSet<K> |
TreeMap.descendingKeySet()
Answers a NavigableSet view of the keys in descending order.
|
NavigableSet<K> |
NavigableMap.descendingKeySet()
Answers a NavigableSet view of the keys in descending order.
|
NavigableSet<E> |
TreeSet.descendingSet()
Answers a reverse order view of this set.
|
NavigableSet<E> |
NavigableSet.descendingSet()
Answers a reverse order view of this set.
|
NavigableSet<E> |
TreeSet.headSet(E end,
boolean endInclusive)
Answers a NavigableSet of the specified portion of this set which
contains elements less than (or equal to, depends on endInclusive) the
end element.
|
NavigableSet<E> |
NavigableSet.headSet(E end,
boolean endInclusive)
Answers a NavigableSet of the specified portion of this set which
contains elements less than (or equal to, depends on endInclusive) the
end element.
|
NavigableSet<K> |
TreeMap.navigableKeySet()
Answers a NavigableSet view of the keys in ascending order.
|
NavigableSet<K> |
NavigableMap.navigableKeySet()
Answers a NavigableSet view of the keys in ascending order.
|
NavigableSet<E> |
TreeSet.subSet(E start,
boolean startInclusive,
E end,
boolean endInclusive)
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element but less than (or equal to, depends on endInclusive) the
end element.
|
NavigableSet<E> |
NavigableSet.subSet(E start,
boolean startInclusive,
E end,
boolean endInclusive)
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element but less than (or equal to, depends on endInclusive) the
end element.
|
NavigableSet<E> |
TreeSet.tailSet(E start,
boolean startInclusive)
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element.
|
NavigableSet<E> |
NavigableSet.tailSet(E start,
boolean startInclusive)
Answers a NavigableSet of the specified portion of this set which
contains elements greater (or equal to, depends on startInclusive) the
start element.
|
Copyright © 2021. All rights reserved.