public abstract class BooleanProperty extends ReadOnlyBooleanProperty implements Property<Boolean>, WritableBooleanValue
Property
wrapping a
boolean
value.
The value of a BooleanProperty
can be get and set with ObservableBooleanValue.get()
,
BooleanExpression.getValue()
, WritableBooleanValue.set(boolean)
, and setValue(Boolean)
.
A property can be bound and unbound unidirectional with
Property.bind(ObservableValue)
and Property.unbind()
. Bidirectional bindings
can be created and removed with bindBidirectional(Property)
and
unbindBidirectional(Property)
.
The context of a BooleanProperty
can be read with ReadOnlyProperty.getBean()
and ReadOnlyProperty.getName()
.
Note: setting or binding this property to a null value will set the property to "false". See setValue(java.lang.Boolean)
.
ObservableBooleanValue
,
WritableBooleanValue
,
ReadOnlyBooleanProperty
,
Property
Constructor and Description |
---|
BooleanProperty()
Sole constructor
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Boolean> |
asObject()
Creates an
ObjectProperty that holds the value
of this BooleanProperty . |
void |
bindBidirectional(Property<Boolean> other)
Create a bidirectional binding between this
Property and another
one. |
static BooleanProperty |
booleanProperty(Property<Boolean> property)
Returns a
BooleanProperty that wraps a
Property . |
void |
setValue(Boolean v)
Set the wrapped value.
|
String |
toString()
Returns a string representation of this
BooleanProperty object. |
void |
unbindBidirectional(Property<Boolean> other)
Remove a bidirectional binding between this
Property and another
one. |
readOnlyBooleanProperty
and, asString, booleanExpression, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getBean, getName
addListener, getValue, removeListener
addListener, removeListener
get, set
getValue
get
public void setValue(Boolean v)
setValue
in interface WritableBooleanValue
setValue
in interface WritableValue<Boolean>
v
- The new valuepublic void bindBidirectional(Property<Boolean> other)
Property
and another
one.
Bidirectional bindings exists independently of unidirectional bindings. So it is possible to
add unidirectional binding to a property with bidirectional binding and vice-versa. However, this practice is
discouraged.
It is possible to have multiple bidirectional bindings of one Property.
JavaFX bidirectional binding implementation use weak listeners. This means bidirectional binding does not prevent properties from being garbage collected.
bindBidirectional
in interface Property<Boolean>
other
- the other Property
public void unbindBidirectional(Property<Boolean> other)
Property
and another
one.
If no bidirectional binding between the properties exists, calling this
method has no effect.
It is possible to unbind by a call on the second property. This code will work:
property1.bindBirectional(property2); property2.unbindBidirectional(property1);
unbindBidirectional
in interface Property<Boolean>
other
- the other Property
public String toString()
BooleanProperty
object.toString
in class ReadOnlyBooleanProperty
BooleanProperty
object.public static BooleanProperty booleanProperty(Property<Boolean> property)
BooleanProperty
that wraps a
Property
. If the
Property
is already a BooleanProperty
, it
will be returned. Otherwise a new
BooleanProperty
is created that is bound to
the Property
.
Note: null values in the source property will be interpreted as "false"property
- The source Property
BooleanProperty
that wraps the
Property
if necessaryNullPointerException
- if property
is null
public ObjectProperty<Boolean> asObject()
ObjectProperty
that holds the value
of this BooleanProperty
. If the
value of this BooleanProperty
changes, the value of the
ObjectProperty
will be updated automatically.asObject
in class ReadOnlyBooleanProperty
ObjectProperty
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.