scalafx.scene.control.SpinnerValueFactory
Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through.
Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through.
The list of items to step through with the Spinner.
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
The underlying data model for the ListView.
The underlying data model for the ListView. Note that it has a generic type that must match the type of the ListView itself.
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).
A SpinnerValueFactory implementation designed to iterate through a list of values.
The type of the elements in the List.