{@inheritDoc} @see java.util.NavigableMap#subMap(Object, boolean, Object, boolean) @since 1.6
(K start, boolean startInclusive, K end,
boolean endInclusive)
| 5505 | * @since 1.6 |
| 5506 | */ |
| 5507 | public NavigableMap<K, V> subMap(K start, boolean startInclusive, K end, |
| 5508 | boolean endInclusive) { |
| 5509 | if (keyCompare(start, end) <= 0) { |
| 5510 | return new AscendingSubMap<K, V>(start, startInclusive, this, end, |
| 5511 | endInclusive); |
| 5512 | } |
| 5513 | throw new IllegalArgumentException(); |
| 5514 | } |
| 5515 | |
| 5516 | /** |
| 5517 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected