Lines Matching refs:fromKey

869      * @throws NullPointerException if {@code fromKey} or {@code toKey} is
875 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
878 false, fromKey, fromInclusive,
898 * @throws NullPointerException if {@code fromKey} is null
904 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
906 false, fromKey, inclusive,
912 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
917 public SortedMap<K,V> subMap(K fromKey, K toKey) {
918 return subMap(fromKey, true, toKey, false);
934 * @throws NullPointerException if {@code fromKey} is null
939 public SortedMap<K,V> tailMap(K fromKey) {
940 return tailMap(fromKey, true);
1261 throw new IllegalArgumentException("fromKey > toKey");
1502 public final SortedMap<K,V> subMap(K fromKey, K toKey) {
1503 return subMap(fromKey, true, toKey, false);
1510 public final SortedMap<K,V> tailMap(K fromKey) {
1511 return tailMap(fromKey, true);
1706 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
1708 if (!inRange(fromKey, fromInclusive))
1709 throw new IllegalArgumentException("fromKey out of range");
1713 false, fromKey, fromInclusive,
1725 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
1726 if (!inRange(fromKey, inclusive))
1727 throw new IllegalArgumentException("fromKey out of range");
1729 false, fromKey, inclusive,
1787 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
1789 if (!inRange(fromKey, fromInclusive))
1790 throw new IllegalArgumentException("fromKey out of range");
1795 false, fromKey, fromInclusive);
1806 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
1807 if (!inRange(fromKey, inclusive))
1808 throw new IllegalArgumentException("fromKey out of range");
1811 false, fromKey, inclusive);
1863 private K fromKey, toKey;
1866 fromStart, fromKey, true,
1872 public SortedMap<K,V> subMap(K fromKey, K toKey) { throw new InternalError(); }
1874 public SortedMap<K,V> tailMap(K fromKey) { throw new InternalError(); }