Module  javafx.base
软件包  javafx.beans.property

Class ReadOnlyIntegerProperty

    • 构造方法详细信息

      • ReadOnlyIntegerProperty

        public ReadOnlyIntegerProperty​()
        构造函数为 ReadOnlyIntegerProperty
    • 方法详细信息

      • toString

        public String toString​()
        返回此 ReadOnlyIntegerProperty对象的字符串表示形式。
        重写:
        toStringObject
        结果
        这个 ReadOnlyIntegerProperty对象的字符串表示形式。
      • readOnlyIntegerProperty

        public static <T extends NumberReadOnlyIntegerProperty readOnlyIntegerProperty​(ReadOnlyProperty<T> property)
        返回一个ReadOnlyIntegerProperty ,其中包含一个ReadOnlyProperty 如果ReadOnlyProperty已经是ReadOnlyIntegerProperty ,它将被返回。 否则将创建一个新的ReadOnlyIntegerProperty绑定到ReadOnlyProperty 注意:空值将被解释为0
        参数类型
        T - 要包装的数字的类型
        参数
        property - 来源 ReadOnlyProperty
        结果
        一个 ReadOnlyIntegerProperty包装了 ReadOnlyProperty如果有必要
        异常
        NullPointerException - 如果 propertynull
        从以下版本开始:
        JavaFX 8.0