Top Description Constructors Methods
javafx.beans.property

public abstract Class ReadOnlyFloatProperty

extends FloatExpression
implements ReadOnlyProperty<Number>
Class Inheritance
All Implemented Interfaces
javafx.beans.property.ReadOnlyProperty, javafx.beans.value.ObservableValue, javafx.beans.Observable
Known Direct Subclasses
javafx.beans.property.ReadOnlyFloatPropertyBase, javafx.beans.property.FloatProperty
Imports
javafx.beans.InvalidationListener, .WeakInvalidationListener, javafx.beans.binding.FloatExpression

Superclass for all readonly properties wrapping a float.
Since
JavaFX 2.0
See Also
javafx.beans.value.ObservableFloatValue, javafx.beans.binding.FloatExpression, ReadOnlyProperty

Constructor Summary

AccessConstructor and Description
public
ReadOnlyFloatProperty()

The constructor of ReadOnlyFloatProperty.

Method Summary

Modifier and TypeMethod and Description
public ReadOnlyObjectProperty<Float>

Returns:

the new ReadOnlyObjectProperty
asObject
()

Overrides javafx.beans.binding.FloatExpression.asObject.

Creates a javafx.beans.property.ReadOnlyObjectProperty that holds the value of this ReadOnlyFloatProperty.

public static <
The type of Number to be wrapped
T extends Number
>
ReadOnlyFloatProperty

Returns:

A ReadOnlyFloatProperty that wraps the ReadOnlyProperty if necessary
readOnlyFloatProperty
(final ReadOnlyProperty<T>
The source ReadOnlyProperty
property
)

Returns a ReadOnlyFloatProperty that wraps a javafx.beans.property.ReadOnlyProperty.

public String

Returns:

a string representation of this ReadOnlyFloatProperty object.
toString
()

Overrides java.lang.Object.toString.

Returns a string representation of this ReadOnlyFloatProperty object.

Inherited from javafx.beans.binding.FloatExpression:
addaddaddadddividedividedividedividedoubleValuefloatExpressionfloatExpressionfloatValuegetValueintValuelongValuemultiplymultiplymultiplymultiplynegatesubtractsubtractsubtractsubtract

Constructor Detail

ReadOnlyFloatPropertyback to summary
public ReadOnlyFloatProperty()

The constructor of ReadOnlyFloatProperty.

Method Detail

asObjectback to summary
public ReadOnlyObjectProperty<Float> asObject()

Overrides javafx.beans.binding.FloatExpression.asObject.

Creates a javafx.beans.property.ReadOnlyObjectProperty that holds the value of this ReadOnlyFloatProperty. If the value of this ReadOnlyFloatProperty changes, the value of the ReadOnlyObjectProperty will be updated automatically.

Returns:ReadOnlyObjectProperty<Float>

the new ReadOnlyObjectProperty

Annotations
@Override
Since
JavaFX 8.0
readOnlyFloatPropertyback to summary
public static <T extends Number> ReadOnlyFloatProperty readOnlyFloatProperty(final ReadOnlyProperty<T> property)

Returns a ReadOnlyFloatProperty that wraps a javafx.beans.property.ReadOnlyProperty. If the ReadOnlyProperty is already a ReadOnlyFloatProperty, it will be returned. Otherwise a new ReadOnlyFloatProperty is created that is bound to the ReadOnlyProperty.

Note

null values will be interpreted as 0f

Parameters
<T>
The type of Number to be wrapped
property:ReadOnlyProperty<T>

The source ReadOnlyProperty

Returns:ReadOnlyFloatProperty

A ReadOnlyFloatProperty that wraps the ReadOnlyProperty if necessary

Exceptions
NullPointerException:
if property is null
Since
JavaFX 8.0
toStringback to summary
public String toString()

Overrides java.lang.Object.toString.

Returns a string representation of this ReadOnlyFloatProperty object.

Returns:String

a string representation of this ReadOnlyFloatProperty object.

Annotations
@Override