java.lang.Object
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:
- DoubleProperty,- ReadOnlyDoublePropertyBase
public abstract class ReadOnlyDoubleProperty extends DoubleExpression implements ReadOnlyProperty<Number>
Superclass for all readonly properties wrapping a 
double.- Since:
- JavaFX 2.0
- See Also:
- ObservableDoubleValue,- DoubleExpression,- ReadOnlyProperty
- 
Constructor SummaryConstructors Constructor Description ReadOnlyDoubleProperty()The constructor ofReadOnlyDoubleProperty.
- 
Method SummaryModifier and Type Method 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 declared in class javafx.beans.binding.DoubleExpressionadd, add, add, add, add, divide, divide, divide, divide, divide, doubleExpression, doubleExpression, multiply, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract, subtractMethods declared in class javafx.beans.binding.NumberExpressionBasenumberExpressionMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.binding.NumberExpressionasString, 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, lessThanOrEqualToMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableDoubleValuegetMethods declared in interface javafx.beans.value.ObservableNumberValuedoubleValue, floatValue, intValue, longValueMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getName
- 
Constructor Details- 
ReadOnlyDoublePropertypublic ReadOnlyDoubleProperty()The constructor ofReadOnlyDoubleProperty.
 
- 
- 
Method Details- 
toStringReturns a string representation of thisReadOnlyDoublePropertyobject.
- 
readOnlyDoublePropertypublic 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.0- Type Parameters:
- T- The type of Number to be wrapped
- Parameters:
- property- The source- ReadOnlyProperty
- Returns:
- A ReadOnlyDoublePropertythat wraps theReadOnlyPropertyif necessary
- Throws:
- NullPointerException- if- propertyis- null
- Since:
- JavaFX 8.0
 
- 
asObjectCreates aReadOnlyObjectPropertythat holds the value of thisReadOnlyDoubleProperty. If the value of thisReadOnlyDoublePropertychanges, the value of theReadOnlyObjectPropertywill be updated automatically.- Overrides:
- asObjectin class- DoubleExpression
- Returns:
- the new ReadOnlyObjectProperty
- Since:
- JavaFX 8.0
 
 
-