Property
wrapping a float
value.
The value of a FloatProperty
can be get and set with get()
,
getValue()
, set(float)
, and setValue(Number)
.
A property can be bound and unbound unidirectional with
bind(ObservableValue)
and unbind()
. Bidirectional bindings
can be created and removed with bindBidirectional(Property)
and
unbindBidirectional(Property)
.
The context of a FloatProperty
can be read with getBean()
and getName()
.
Note
setting or binding this property to a null value will set the property to "0.0". See setValue(java.
.
javafx.beans.value.ObservableFloatValue
, javafx.beans.value.WritableFloatValue
, ReadOnlyFloatProperty
, Property
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public ObjectProperty | Returns: the newObjectProperty Overrides javafx. Creates an |
public void | bindBidirectional(Property<Number>
the other other)Property Implements javafx. Create a bidirectional binding between this |
public static FloatProperty | Returns: AFloatProperty that wraps the
Property The source property)Property Returns a |
public void | setValue(Number
The new value v)Implements javafx. Set the wrapped value. |
public String | Returns: a string representation of thisFloatProperty object.Overrides javafx. Returns a string representation of this |
public void | unbindBidirectional(Property<Number>
the other other)Property Implements javafx. Removes a bidirectional binding between this |
FloatProperty | back to summary |
---|---|
public FloatProperty() Creates a default |
asObject | back to summary |
---|---|
public ObjectProperty Overrides javafx. Creates an Can be used for binding an ObjectProperty to FloatProperty. FloatProperty floatProperty = new SimpleFloatProperty(1.0f); ObjectProperty<Float> objectProperty = new SimpleObjectProperty<>(2.0f); objectProperty.bind(floatProperty.asObject());
|
bindBidirectional | back to summary |
---|---|
public void bindBidirectional(Property<Number> other) Implements javafx. Doc from javafx. Create a bidirectional binding between this 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. |
floatProperty | back to summary |
---|---|
public static FloatProperty floatProperty(final Property<Float> property) Returns a This is very useful when bidirectionally binding an ObjectProperty<Float> and a FloatProperty. Another approach is to convert the FloatProperty to ObjectProperty usingFloatProperty floatProperty = new SimpleFloatProperty(1.0f); ObjectProperty<Float> objectProperty = new SimpleObjectProperty<>(2.0f); // Need to keep the reference as bidirectional binding uses weak references FloatProperty objectAsFloat = FloatProperty.floatProperty(objectProperty); floatProperty.bindBidirectional(objectAsFloat); asObject() method.Note null values in the source property will be interpreted as 0f
|
setValue | back to summary |
---|---|
public void setValue(Number v) Implements javafx. Doc from javafx. Set the wrapped value. Note this method should accept null without throwing an exception, setting "0.0" instead. |
toString | back to summary |
---|---|
public String toString() Overrides javafx. Returns a string representation of this |
unbindBidirectional | back to summary |
---|---|
public void unbindBidirectional(Property<Number> other) Implements javafx. Doc from javafx. Removes a bidirectional binding between this property1.bindBidirectional(property2); property2.unbindBidirectional(property1); |