Class ReadOnlyDoubleProperty
- javafx.beans.binding.NumberExpressionBase
-
- javafx.beans.binding.DoubleExpression
-
- javafx.beans.property.ReadOnlyDoubleProperty
All Implemented Interfaces:
NumberExpression, Observable, ReadOnlyProperty<Number>, ObservableDoubleValue, ObservableNumberValue, ObservableValue<Number>
Direct Known Subclasses:
public abstract class ReadOnlyDoubleProperty extends DoubleExpression implements ReadOnlyProperty<Number>
double.Since:
JavaFX 2.0
See Also:
-
Constructor Summary
Constructors Constructor and Description ReadOnlyDoubleProperty()The constructor ofReadOnlyDoubleProperty.
-
Method Summary
All MethodsStatic MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description ReadOnlyObjectProperty<Double>asObject()Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyDoubleProperty.static <T extends Number>
ReadOnlyDoublePropertyreadOnlyDoubleProperty(ReadOnlyProperty<T> property)Returns aReadOnlyDoublePropertythat wraps aReadOnlyProperty.StringtoString()Returns a string representation of thisReadOnlyDoublePropertyobject.-
Methods inherited from class javafx.beans.binding.DoubleExpression
add, add, add, add, add, divide, divide, divide, divide, divide, doubleExpression, doubleExpression, doubleValue, floatValue, getValue, intValue, longValue, multiply, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract, subtract
-
Methods inherited from class javafx.beans.binding.NumberExpressionBase
asString, asString, asString, greaterThan, greaterThan, greaterThan, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, lessThan, lessThan, lessThan, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, numberExpression
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableDoubleValue
get
-
-
Constructor Detail
-
ReadOnlyDoubleProperty
public ReadOnlyDoubleProperty()
The constructor ofReadOnlyDoubleProperty.
-
-
Method Detail
-
toString
public String toString()
Returns a string representation of thisReadOnlyDoublePropertyobject.
-
readOnlyDoubleProperty
public static <T extends Number> ReadOnlyDoubleProperty readOnlyDoubleProperty(ReadOnlyProperty<T> property)
Returns aReadOnlyDoublePropertythat wraps aReadOnlyProperty. If theReadOnlyPropertyis already aReadOnlyDoubleProperty, it will be returned. Otherwise a newReadOnlyDoublePropertyis created that is bound to theReadOnlyProperty. Note: null values will be interpreted as 0.0Parameters:
property- The sourceReadOnlyPropertyReturns:
A
ReadOnlyDoublePropertythat wraps theReadOnlyPropertyif necessaryThrows:
NullPointerException- ifpropertyisnullSince:
JavaFX 8.0
-
asObject
public ReadOnlyObjectProperty<Double> asObject()
Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyDoubleProperty. If the value of thisReadOnlyDoublePropertychanges, the value of theReadOnlyObjectPropertywill be updated automatically.Overrides:
asObjectin classDoubleExpressionReturns:
the new
ReadOnlyObjectPropertySince:
JavaFX 8.0
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.