Module  javafx.controls
软件包  javafx.scene.control

Class SpinnerValueFactory<T>

    • 构造方法详细信息

      • SpinnerValueFactory

        public SpinnerValueFactory​()
    • 方法详细信息

      • decrement

        public abstract void decrement​(int steps)
        尝试按照给定的步数减少 value
        参数
        steps - 应该对该值执行的减量的数量。
      • increment

        public abstract void increment​(int steps)
        试图通过给定的步数来剔除 value
        参数
        steps - 应该对值执行的增量数。
      • getValue

        public final T getValue​()
        获取属性值的值。
        Property description:
        表示SpinnerValueFactory的当前值,如果未设置值,则为null。
      • setValue

        public final void setValue​(T newValue)
        设置属性值的值。
        Property description:
        表示SpinnerValueFactory的当前值,如果未设置值,则为null。
      • valueProperty

        public final ObjectProperty<T> valueProperty​()
        表示SpinnerValueFactory的当前值,如果未设置值,则为null。
        另请参见:
        getValue()setValue(T)
      • getConverter

        public final StringConverter<T> getConverter​()
        获取属性转换器的值。
        Property description:
        将用户输入的输入(当微调器为 editable )转换为类型T的对象时,可以通过 value属性检索输入。
      • setConverter

        public final void setConverter​(StringConverter<T> newValue)
        设置属性转换器的值。
        Property description:
        将用户键入的输入(当微调器为 editable )转换为类型T的对象时,以便可以通过 value属性检索输入。
      • setWrapAround

        public final void setWrapAround​(boolean value)
        设置属性wrapAround的值。
        Property description:
        wrapAround属性用于指定值factory是圆形的。 例如,如果基于整数的值模型从最大值增加到最小值(反之亦然)。
      • isWrapAround

        public final boolean isWrapAround​()
        获取属性wrapAround的值。
        Property description:
        wrapAround属性用于指定值factory是圆形的。 例如,如果基于整数的值模型从最大值增加到最小值(反之亦然)。
      • wrapAroundProperty

        public final BooleanProperty wrapAroundProperty​()
        wrapAround属性用于指定值factory是圆形的。 例如,如果基于整数的值模型从最大值增加到最小值(反之亦然)。
        另请参见:
        isWrapAround()setWrapAround(boolean)