(K fromElement, boolean fromInclusive, K toElement, boolean toInclusive)
| 3824 | } |
| 3825 | |
| 3826 | @Override |
| 3827 | public NavigableSet<K> subSet(K fromElement, boolean fromInclusive, K toElement, boolean toInclusive) { |
| 3828 | return map().subMap(fromElement, fromInclusive, toElement, toInclusive).navigableKeySet(); |
| 3829 | } |
| 3830 | |
| 3831 | @Override |
| 3832 | public NavigableSet<K> headSet(K toElement, boolean inclusive) { |
nothing calls this directly
no test coverage detected