Lines Matching refs:maximum

44  * includes methods that return string labels for the minimum, maximum, and midpoint
68 * The maximum supported value.
70 private float maximum;
96 * A label for the maximum value, such as "Right."
123 * @param maximum the largest value permitted for the control
133 * @param maxLabel the label for the maximum value, such as "Right" or "Full"
136 * than {@code maximum} or {@code initialValue} does not fall
139 protected FloatControl(Type type, float minimum, float maximum,
145 if (minimum > maximum) {
147 + " exceeds maximum value " + maximum + ".");
153 if (initialValue > maximum) {
155 + " exceeds allowable maximum value " + maximum + ".");
160 this.maximum = maximum;
175 * The labels for the minimum, maximum, and mid-point values are set
180 * @param maximum the largest value permitted for the control
190 * than {@code maximum} or {@code initialValue} does not fall
193 protected FloatControl(Type type, float minimum, float maximum,
195 this(type, minimum, maximum, precision, updatePeriod,
207 * than the maximum value, or smaller than the minimum value, an
217 if (newValue > maximum) {
218 throw new IllegalArgumentException("Requested value " + newValue + " exceeds allowable maximum value " + maximum + ".");
239 * Obtains the maximum value permitted.
240 * @return the maximum allowable value
243 return maximum;
285 * Obtains the label for the maximum value, such as "Right" or "Full."
286 * @return the maximum value label, or a zero-length string if no label * has been set
330 * @param microseconds maximum duration of the shift in microseconds
343 if (from > maximum) {
345 + " exceeds allowable maximum value " + maximum + ".");
360 " (range: " + minimum + " - " + maximum + ")");
398 * The <code>FloatControl</code> class has methods to impose a maximum and
400 * already be at a high amplitude, the maximum setting does not guarantee
402 * the maximum is zero or negative). To avoid numeric overflow from excessively
404 * clipping, meaning that the signal's amplitude will be limited to the maximum