(K start, boolean startInclusive, K end,
boolean endInclusive)
| 5584 | /// |
| 5585 | /// - java.util.NavigableMap#subMap(Object, boolean, Object, boolean) |
| 5586 | public NavigableMap<K, V> subMap(K start, boolean startInclusive, K end, |
| 5587 | boolean endInclusive) { |
| 5588 | if (keyCompare(start, end) <= 0) { |
| 5589 | return new AscendingSubMap<K, V>(start, startInclusive, this, end, |
| 5590 | endInclusive); |
| 5591 | } |
| 5592 | throw new IllegalArgumentException(); |
| 5593 | } |
| 5594 | |
| 5595 | /// {@inheritDoc} |
| 5596 | /// |
nothing calls this directly
no test coverage detected