Schnittstelle MinMaxIncr
- Alle bekannten Implementierungsklassen:
DynamicMinMaxIncr, ExplicitMinMaxIncr, FixedIncrementMinMaxIncr, MapperMinMaxIncr, MinMaxIncrOsci
public interface MinMaxIncr
Minimum, maximum and increment value (when scrolling the value). Maps the int scrollbar position (adjusted
in a Property Window) to a double value and vice versa.
-
Methodenübersicht
Modifikator und TypMethodeBeschreibungdefault intdecreaseValue(double value) intgetIntValue(double value) intintdoublegetValue(int intValue) default intincreaseValue(double value) doublevalidateValue(double inputValue) Validates input value (entered manually).
-
Methodendetails
-
getValue
double getValue(int intValue) -
getIntValue
int getIntValue(double value) -
getMaxIntValue
int getMaxIntValue() -
getMinIntValue
int getMinIntValue() -
increaseValue
default int increaseValue(double value) -
decreaseValue
default int decreaseValue(double value) -
validateValue
double validateValue(double inputValue) Validates input value (entered manually).- Parameter:
inputValue-- Gibt zurück:
- value A valid value between minValue and maxValue NOT considering increment.
-