java.lang.Object
javafx.beans.binding.BooleanExpression
javafx.beans.property.ReadOnlyBooleanProperty
- All Implemented Interfaces:
 Observable,ReadOnlyProperty<Boolean>,ObservableBooleanValue,ObservableValue<Boolean>
- Direct Known Subclasses:
 BooleanProperty,ReadOnlyBooleanPropertyBase
public abstract class ReadOnlyBooleanProperty extends BooleanExpression implements ReadOnlyProperty<Boolean>
Superclass for all readonly properties wrapping a 
boolean.- Since:
 - JavaFX 2.0
 - See Also:
 ObservableBooleanValue,BooleanExpression,ReadOnlyProperty
- 
Constructor Summary
Constructors Constructor Description ReadOnlyBooleanProperty()The constructor ofReadOnlyBooleanProperty. - 
Method Summary
Modifier and Type Method 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 declared in class javafx.beans.binding.BooleanExpression
and, asString, booleanExpression, booleanExpression, isEqualTo, isNotEqualTo, not, orMethods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.Observable
addListener, removeListenerMethods declared in interface javafx.beans.value.ObservableBooleanValue
getMethods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListenerMethods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName 
- 
Constructor Details
- 
ReadOnlyBooleanProperty
public ReadOnlyBooleanProperty()The constructor ofReadOnlyBooleanProperty. 
 - 
 - 
Method Details
- 
toString
Returns a string representation of thisReadOnlyBooleanPropertyobject. - 
readOnlyBooleanProperty
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 sourceReadOnlyProperty- Returns:
 - A 
ReadOnlyBooleanPropertythat wraps theReadOnlyPropertyif necessary - Throws:
 NullPointerException- ifpropertyisnull- Since:
 - JavaFX 8.0
 
 - 
asObject
Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyBooleanProperty. If the value of thisReadOnlyBooleanPropertychanges, the value of theReadOnlyObjectPropertywill be updated automatically.- Overrides:
 asObjectin classBooleanExpression- Returns:
 - the new 
ReadOnlyObjectProperty - Since:
 - JavaFX 8.0
 
 
 -