Lines Matching defs:fromKey

902      * @throws NullPointerException if {@code fromKey} or {@code toKey} is
908 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
911 false, fromKey, fromInclusive,
931 * @throws NullPointerException if {@code fromKey} is null
937 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
939 false, fromKey, inclusive,
945 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
950 public SortedMap<K,V> subMap(K fromKey, K toKey) {
951 return subMap(fromKey, true, toKey, false);
967 * @throws NullPointerException if {@code fromKey} is null
972 public SortedMap<K,V> tailMap(K fromKey) {
973 return tailMap(fromKey, true);
1365 throw new IllegalArgumentException("fromKey > toKey");
1608 public final SortedMap<K,V> subMap(K fromKey, K toKey) {
1609 return subMap(fromKey, true, toKey, false);
1616 public final SortedMap<K,V> tailMap(K fromKey) {
1617 return tailMap(fromKey, true);
1859 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
1861 if (!inRange(fromKey, fromInclusive))
1862 throw new IllegalArgumentException("fromKey out of range");
1866 false, fromKey, fromInclusive,
1878 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
1879 if (!inRange(fromKey, inclusive))
1880 throw new IllegalArgumentException("fromKey out of range");
1882 false, fromKey, inclusive,
1944 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
1946 if (!inRange(fromKey, fromInclusive))
1947 throw new IllegalArgumentException("fromKey out of range");
1952 false, fromKey, fromInclusive);
1963 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
1964 if (!inRange(fromKey, inclusive))
1965 throw new IllegalArgumentException("fromKey out of range");
1968 false, fromKey, inclusive);
2024 private K fromKey, toKey;
2027 fromStart, fromKey, true,
2033 public SortedMap<K,V> subMap(K fromKey, K toKey) { throw new InternalError(); }
2035 public SortedMap<K,V> tailMap(K fromKey) { throw new InternalError(); }