Home | History | Annotate | Download | only in util

Lines Matching defs:fromKey

906      * @throws NullPointerException if {@code fromKey} or {@code toKey} is
912 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
915 false, fromKey, fromInclusive,
935 * @throws NullPointerException if {@code fromKey} is null
941 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
943 false, fromKey, inclusive,
949 * @throws NullPointerException if {@code fromKey} or {@code toKey} is
954 public SortedMap<K,V> subMap(K fromKey, K toKey) {
955 return subMap(fromKey, true, toKey, false);
971 * @throws NullPointerException if {@code fromKey} is null
976 public SortedMap<K,V> tailMap(K fromKey) {
977 return tailMap(fromKey, true);
1374 throw new IllegalArgumentException("fromKey > toKey");
1617 public final SortedMap<K,V> subMap(K fromKey, K toKey) {
1618 return subMap(fromKey, true, toKey, false);
1625 public final SortedMap<K,V> tailMap(K fromKey) {
1626 return tailMap(fromKey, true);
1868 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
1870 if (!inRange(fromKey, fromInclusive))
1871 throw new IllegalArgumentException("fromKey out of range");
1875 false, fromKey, fromInclusive,
1891 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
1893 // if (!inRange(fromKey, inclusive))
1894 if (!inRange(fromKey) && !(!fromStart && m.compare(fromKey, lo) == 0 &&
1897 throw new IllegalArgumentException("fromKey out of range");
1899 false, fromKey, inclusive,
1961 public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive,
1963 if (!inRange(fromKey, fromInclusive))
1964 throw new IllegalArgumentException("fromKey out of range");
1969 false, fromKey, fromInclusive);
1984 public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive) {
1986 // if (!inRange(fromKey, inclusive))
1987 if (!inRange(fromKey) && !(!toEnd && m.compare(fromKey, hi) == 0 &&
1990 throw new IllegalArgumentException("fromKey out of range");
1993 false, fromKey, inclusive);
2049 private K fromKey, toKey;
2052 fromStart, fromKey, true,
2058 public SortedMap<K,V> subMap(K fromKey, K toKey) { throw new InternalError(); }
2060 public SortedMap<K,V> tailMap(K fromKey) { throw new InternalError(); }