Class ReadOnlyBooleanProperty
- javafx.beans.binding.BooleanExpression
-
- javafx.beans.property.ReadOnlyBooleanProperty
All Implemented Interfaces:
Observable, ReadOnlyProperty<Boolean>, ObservableBooleanValue, ObservableValue<Boolean>
Direct Known Subclasses:
public abstract class ReadOnlyBooleanProperty extends BooleanExpression implements ReadOnlyProperty<Boolean>
boolean.Since:
JavaFX 2.0
See Also:
-
Constructor Summary
Constructors Constructor and Description ReadOnlyBooleanProperty()The constructor ofReadOnlyBooleanProperty.
-
Method Summary
All MethodsStatic MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description ReadOnlyObjectProperty<Boolean>asObject()Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyBooleanProperty.static ReadOnlyBooleanPropertyreadOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)Returns aReadOnlyBooleanPropertythat wraps aReadOnlyProperty.StringtoString()Returns a string representation of thisReadOnlyBooleanPropertyobject.-
Methods inherited from class javafx.beans.binding.BooleanExpression
and, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableBooleanValue
get
-
-
Constructor Detail
-
ReadOnlyBooleanProperty
public ReadOnlyBooleanProperty()
The constructor ofReadOnlyBooleanProperty.
-
-
Method Detail
-
toString
public String toString()
Returns a string representation of thisReadOnlyBooleanPropertyobject.
-
readOnlyBooleanProperty
public static ReadOnlyBooleanProperty readOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)
Returns aReadOnlyBooleanPropertythat wraps aReadOnlyProperty. If theReadOnlyPropertyis already aReadOnlyBooleanProperty, it will be returned. Otherwise a newReadOnlyBooleanPropertyis created that is bound to theReadOnlyProperty. Note: null values will be interpreted as "false"Parameters:
property- The sourceReadOnlyPropertyReturns:
A
ReadOnlyBooleanPropertythat wraps theReadOnlyPropertyif necessaryThrows:
NullPointerException- ifpropertyisnullSince:
JavaFX 8.0
-
asObject
public ReadOnlyObjectProperty<Boolean> asObject()
Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyBooleanProperty. If the value of thisReadOnlyBooleanPropertychanges, the value of theReadOnlyObjectPropertywill be updated automatically.Overrides:
asObjectin classBooleanExpressionReturns:
the new
ReadOnlyObjectPropertySince:
JavaFX 8.0
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.