| Package | Description |
|---|---|
| com.orientechnologies.common.collection |
| Modifier and Type | Method and Description |
|---|---|
ONavigableMap<K,V> |
ONavigableMap.descendingMap()
Returns a reverse order view of the mappings contained in this map.
|
ONavigableMap<K,V> |
ONavigableMap.headMap(K toKey,
boolean inclusive)
Returns a view of the portion of this map whose keys are less than (or equal to, if
inclusive is true) toKey. |
ONavigableMap<K,V> |
ONavigableMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
Returns a view of the portion of this map whose keys range from
fromKey to toKey. |
ONavigableMap<K,V> |
ONavigableMap.tailMap(K fromKey,
boolean inclusive)
Returns a view of the portion of this map whose keys are greater than (or equal to, if
inclusive is true)
fromKey. |
Copyright © 2009–2025 OrientDB. All rights reserved.