scalafx.scene.control.SpinnerValueFactory
Constructs a new IntegerSpinnerValueFactory.
Constructs a new IntegerSpinnerValueFactory.
The minimum allowed integer value for the Spinner.
The maximum allowed integer value for the Spinner.
The value of the Spinner when first instantiated, must be within the bounds of the min and max arguments, or else the min value will be used.
The amount to increment or decrement by, per step.
Constructs a new IntegerSpinnerValueFactory with a default
amountToStepBy
of one.
Constructs a new IntegerSpinnerValueFactory with a default
amountToStepBy
of one.
The minimum allowed integer value for the Spinner.
The maximum allowed integer value for the Spinner.
The value of the Spinner when first instantiated, must be within the bounds of the min and max arguments, or else the min value will be used.
Constructs a new IntegerSpinnerValueFactory that sets the initial value
to be equal to the min value, and a default amountToStepBy
of one.
Constructs a new IntegerSpinnerValueFactory that sets the initial value
to be equal to the min value, and a default amountToStepBy
of one.
The minimum allowed integer value for the Spinner.
The maximum allowed integer value for the Spinner.
Sets the amount to increment or decrement by, per step.
Converts the user-typed input (when the Spinner is editable
) to an object of type T,
such that the input may be retrieved via the value
property.
Converts the user-typed input (when the Spinner is editable
) to an object of type T,
such that the input may be retrieved via the value
property.
JavaFX object to be wrapped.
JavaFX object to be wrapped.
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Object to be compared.
if the other object is equals to this delegate or not.
The delegate hashcode
Sets the maximum allowable value for this value factory
Sets the minimum allowable value for this value factory
Returns the original delegate's toString()
adding a [SFX]
prefix.
Represents the current value of the SpinnerValueFactory, or null if no value has been set.
Represents the current value of the SpinnerValueFactory, or null if no value has been set.
The wrapAround property is used to specify whether the value factory should be circular.
The wrapAround property is used to specify whether the value factory should be circular. For example, should an integer-based value model increment from the maximum value back to the minimum value (and vice versa).