Home | History | Annotate | Download | only in impl

Lines Matching defs:Range

78                 // new possible range
134 static final class Range implements Comparable<Range>{
137 public Range(int min, int max) {
143 return compareTo((Range)obj) == 0;
145 public int compareTo(Range that) {
164 private final Range[] ranges;
167 ranges = new Range[array.length];
169 ranges[i] = new Range(array[i], array[i]);
243 throw new ICUException("Range must have 2 valid strings");
250 throw new ICUException("Range must have equal-length strings");
252 throw new ICUException("Range must have start-length ? end-length");
254 throw new ICUException("Range must have end-length > 0");
269 throw new ICUException("Range must have x? ? y? for each index i");