(K startKey)
| 913 | } |
| 914 | |
| 915 | public SortedMap<K, V> tailMap(K startKey) { |
| 916 | checkRange(startKey); |
| 917 | if (hasEnd) { |
| 918 | return new SubMap<K, V>(startKey, backingMap, endKey); |
| 919 | } |
| 920 | return new SubMap<K, V>(startKey, backingMap); |
| 921 | } |
| 922 | |
| 923 | @Override |
| 924 | public Collection<V> values() { |
nothing calls this directly
no test coverage detected