(K fromKey,
boolean inclusive)
| 980 | } |
| 981 | |
| 982 | @Override |
| 983 | public SubMap<K,V> tailMap(K fromKey, |
| 984 | boolean inclusive) { |
| 985 | if (fromKey == null) |
| 986 | throw new NullPointerException(); |
| 987 | return newSubMap(fromKey, inclusive, null, false); |
| 988 | } |
| 989 | |
| 990 | @Override |
| 991 | public SubMap<K,V> subMap(K fromKey, K toKey) { |