public IntegerSpinnerValueFactory (int min, int max, int initialValue, int amountToStepBy)

Constructs a new IntegerSpinnerValueFactory.

Parameters:
min    The minimum allowed integer value for the Spinner.
max    The maximum allowed integer value for the Spinner.
initialValue    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.
amountToStepBy    The amount to increment or decrement by, per step.