Home | History | Annotate | Download | only in options

Lines Matching refs:maxValue

360     final int maxValue;
362 public RangeConverter(int minValue, int maxValue) {
364 this.maxValue = maxValue;
373 } else if (value < minValue || value > maxValue) {
374 throw new OptionsParsingException("'" + input + "' should be <= " + maxValue);
385 if (maxValue == Integer.MAX_VALUE) {
388 return "an integer, <= " + maxValue;
390 } else if (maxValue == Integer.MAX_VALUE) {
394 + (minValue < 0 ? "(" + minValue + ")" : minValue) + "-" + maxValue + " range";