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.
A JavaFX SpinnerValueFactory to be wrapped.
A JavaFX SpinnerValueFactory to be wrapped. Its default value is a new JavaFX SpinnerValueFactory.
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
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.
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).
The SpinnerValueFactory is the model behind the
Spinner
control - without a value factory installed aSpinner
is unusable.Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SpinnerValueFactory.html.
The type of the data this value factory deals with, which must coincide with the type of the Spinner that the value factory is set on.