(K toKey,
boolean inclusive)
| 972 | } |
| 973 | |
| 974 | @Override |
| 975 | public SubMap<K,V> headMap(K toKey, |
| 976 | boolean inclusive) { |
| 977 | if (toKey == null) |
| 978 | throw new NullPointerException(); |
| 979 | return newSubMap(null, false, toKey, inclusive); |
| 980 | } |
| 981 | |
| 982 | @Override |
| 983 | public SubMap<K,V> tailMap(K fromKey, |