| Package | Description |
|---|---|
| java.util |
| Modifier and Type | Class and Description |
|---|---|
class |
TreeMap<K,V>
TreeMap is an implementation of SortedMap.
|
| Modifier and Type | Method and Description |
|---|---|
NavigableMap<K,V> |
TreeMap.descendingMap()
Answers a reverse order view of the map.
|
NavigableMap<K,V> |
NavigableMap.descendingMap()
Answers a reverse order view of the map.
|
NavigableMap<K,V> |
TreeMap.headMap(K end,
boolean inclusive)
Answers a view of the head of the map whose keys are smaller than (or
equal to, depends on inclusive argument) endKey.
|
NavigableMap<K,V> |
NavigableMap.headMap(K endKey,
boolean inclusive)
Answers a view of the head of the map whose keys are smaller than (or
equal to, depends on inclusive argument) endKey.
|
NavigableMap<K,V> |
TreeMap.subMap(K start,
boolean startInclusive,
K end,
boolean endInclusive)
Answers a view of part of the map whose keys is from startKey to endKey.
|
NavigableMap<K,V> |
NavigableMap.subMap(K startKey,
boolean startInclusive,
K endKey,
boolean endInclusive)
Answers a view of part of the map whose keys is from startKey to endKey.
|
NavigableMap<K,V> |
TreeMap.tailMap(K start,
boolean inclusive)
Answers a view of the tail of the map whose keys are bigger than (or
equal to, depends on inclusive argument) startKey.
|
NavigableMap<K,V> |
NavigableMap.tailMap(K startKey,
boolean inclusive)
Answers a view of the tail of the map whose keys are bigger than (or
equal to, depends on inclusive argument) startKey.
|
Copyright © 2022. All rights reserved.