(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
| 962 | } |
| 963 | |
| 964 | @Override |
| 965 | public SubMap<K,V> subMap(K fromKey, |
| 966 | boolean fromInclusive, |
| 967 | K toKey, |
| 968 | boolean toInclusive) { |
| 969 | if (fromKey == null || toKey == null) |
| 970 | throw new NullPointerException(); |
| 971 | return newSubMap(fromKey, fromInclusive, toKey, toInclusive); |
| 972 | } |
| 973 | |
| 974 | @Override |
| 975 | public SubMap<K,V> headMap(K toKey, |