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

Class ReadOnlyBooleanProperty

    • 构造方法详细信息

      • ReadOnlyBooleanProperty

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

      • toString

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

        public static ReadOnlyBooleanProperty readOnlyBooleanProperty​(ReadOnlyProperty<Boolean> property)
        返回一个ReadOnlyBooleanPropertyReadOnlyBooleanProperty 如果ReadOnlyProperty已经是ReadOnlyBooleanProperty ,它将被返回。 否则,创建一个新的ReadOnlyBooleanProperty绑定到ReadOnlyProperty 注意:空值将被解释为“false”
        参数
        property - 来源 ReadOnlyProperty
        结果
        一个 ReadOnlyBooleanProperty包装了 ReadOnlyProperty如果有必要
        异常
        NullPointerException - 如果 propertynull
        从以下版本开始:
        JavaFX 8.0