(
K fromElement, boolean fromInclusive, K toElement, boolean toInclusive)
| 3756 | } |
| 3757 | |
| 3758 | @Override |
| 3759 | public NavigableSet<K> subSet( |
| 3760 | K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) { |
| 3761 | return map().subMap(fromElement, fromInclusive, toElement, toInclusive).navigableKeySet(); |
| 3762 | } |
| 3763 | |
| 3764 | @Override |
| 3765 | public NavigableSet<K> headSet(K toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected