Lines Matching refs:fromKey

1975      * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
1978 public ConcurrentNavigableMap<K,V> subMap(K fromKey,
1982 if (fromKey == null || toKey == null)
1985 (this, fromKey, fromInclusive, toKey, toInclusive, false);
2003 * @throws NullPointerException if {@code fromKey} is null
2006 public ConcurrentNavigableMap<K,V> tailMap(K fromKey,
2008 if (fromKey == null)
2011 (this, fromKey, inclusive, null, false, false);
2016 * @throws NullPointerException if {@code fromKey} or {@code toKey} is null
2019 public ConcurrentNavigableMap<K,V> subMap(K fromKey, K toKey) {
2020 return subMap(fromKey, true, toKey, false);
2034 * @throws NullPointerException if {@code fromKey} is null
2037 public ConcurrentNavigableMap<K,V> tailMap(K fromKey) {
2038 return tailMap(fromKey, true);
2501 K fromKey, boolean fromInclusive,
2504 if (fromKey != null && toKey != null &&
2505 map.compare(fromKey, toKey) > 0)
2508 this.lo = fromKey;
2823 private SubMap<K,V> newSubMap(K fromKey,
2828 K tk = fromKey;
2829 fromKey = toKey;
2836 if (fromKey == null) {
2837 fromKey = lo;
2841 int c = m.compare(fromKey, lo);
2857 return new SubMap<K,V>(m, fromKey, fromInclusive,
2861 public SubMap<K,V> subMap(K fromKey,
2865 if (fromKey == null || toKey == null)
2867 return newSubMap(fromKey, fromInclusive, toKey, toInclusive);
2877 public SubMap<K,V> tailMap(K fromKey,
2879 if (fromKey == null)
2881 return newSubMap(fromKey, inclusive, null, false);
2884 public SubMap<K,V> subMap(K fromKey, K toKey) {
2885 return subMap(fromKey, true, toKey, false);
2892 public SubMap<K,V> tailMap(K fromKey) {
2893 return tailMap(fromKey, true);