- 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 aboolean.- Since:
- JavaFX 2.0
- See Also:
- ObservableBooleanValue,- BooleanExpression,- ReadOnlyProperty
 
- 
- 
Constructor SummaryConstructors Constructor Description ReadOnlyBooleanProperty()The constructor ofReadOnlyBooleanProperty.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods 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 inherited from class javafx.beans.binding.BooleanExpressionand, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface javafx.beans.ObservableaddListener, removeListener
 - 
Methods inherited from interface javafx.beans.value.ObservableBooleanValueget
 - 
Methods inherited from interface javafx.beans.value.ObservableValueaddListener, getValue, removeListener
 - 
Methods inherited from interface javafx.beans.property.ReadOnlyPropertygetBean, getName
 
- 
 
- 
- 
- 
Method Detail- 
toStringpublic String toString() Returns a string representation of thisReadOnlyBooleanPropertyobject.
 - 
readOnlyBooleanPropertypublic 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 source- ReadOnlyProperty
- Returns:
- A ReadOnlyBooleanPropertythat wraps theReadOnlyPropertyif necessary
- Throws:
- NullPointerException- if- propertyis- null
- Since:
- JavaFX 8.0
 
 - 
asObjectpublic ReadOnlyObjectProperty<Boolean> asObject() Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyBooleanProperty. If the value of thisReadOnlyBooleanPropertychanges, the value of theReadOnlyObjectPropertywill be updated automatically.- Overrides:
- asObjectin class- BooleanExpression
- Returns:
- the new ReadOnlyObjectProperty
- Since:
- JavaFX 8.0
 
 
- 
 
-