{@inheritDoc} @see java.util.NavigableMap#headMap(Object, boolean) @since 1.6
(K end, boolean inclusive)
| 5520 | * @since 1.6 |
| 5521 | */ |
| 5522 | public NavigableMap<K, V> headMap(K end, boolean inclusive) { |
| 5523 | // check for error |
| 5524 | keyCompare(end, end); |
| 5525 | return new AscendingSubMap<K, V>(this, end, inclusive); |
| 5526 | } |
| 5527 | |
| 5528 | /** |
| 5529 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected