Lines Matching defs:maximum

43  * return string labels for the minimum, maximum, and midpoint positions of the
60 * The maximum supported value.
62 private final float maximum;
87 * A label for the maximum value, such as "Right".
106 * @param maximum the largest value permitted for the control
119 * @param maxLabel the label for the maximum value, such as "Right" or
122 * {@code maximum} or {@code initialValue} does not fall within the
125 protected FloatControl(Type type, float minimum, float maximum,
131 if (minimum > maximum) {
133 + " exceeds maximum value " + maximum + ".");
139 if (initialValue > maximum) {
141 + " exceeds allowable maximum value " + maximum + ".");
146 this.maximum = maximum;
160 * labels for the minimum, maximum, and mid-point values are set to
165 * @param maximum the largest value permitted for the control
176 * {@code maximum} or {@code initialValue} does not fall within the
179 protected FloatControl(Type type, float minimum, float maximum,
181 this(type, minimum, maximum, precision, updatePeriod,
188 * maximum value, or smaller than the minimum value, an
198 if (newValue > maximum) {
199 throw new IllegalArgumentException("Requested value " + newValue + " exceeds allowable maximum value " + maximum + ".");
219 * Obtains the maximum value permitted.
221 * @return the maximum allowable value
224 return maximum;
267 * Obtains the label for the maximum value, such as "Right" or "Full".
269 * @return the maximum value label, or a zero-length string if no label has
314 * @param microseconds maximum duration of the shift in microseconds
325 if (from > maximum) {
327 + " exceeds allowable maximum value " + maximum + ".");
340 " (range: " + minimum + " - " + maximum + ")");
367 * The {@code FloatControl} class has methods to impose a maximum and
369 * might already be at a high amplitude, the maximum setting does not
371 * applied to it (unless the maximum is zero or negative). To avoid
374 * limited to the maximum value representable by its audio format,