public static ReadOnlyBooleanProperty readOnlyBooleanProperty (ReadOnlyProperty<Boolean> property)

Returns a ReadOnlyBooleanProperty that wraps a javafx.beans.property.ReadOnlyProperty. If the ReadOnlyProperty is already a ReadOnlyBooleanProperty, it will be returned. Otherwise a new ReadOnlyBooleanProperty is created that is bound to the ReadOnlyProperty. Note: null values will be interpreted as "false"

Parameters:
property     The source ReadOnlyProperty

Returns:  A ReadOnlyBooleanProperty that wraps the ReadOnlyProperty if necessary

Exceptions:
NullPointerException     if property is null

Since:  JavaFX 8.0