(K fromKey, boolean inclusive)
| 4163 | } |
| 4164 | |
| 4165 | @Override |
| 4166 | public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) { |
| 4167 | return forward().headMap(fromKey, inclusive).descendingMap(); |
| 4168 | } |
| 4169 | |
| 4170 | @Override |
| 4171 | public SortedMap<K, V> subMap(K fromKey, K toKey) { |