java.lang.Object
javafx.beans.binding.NumberExpressionBase
javafx.beans.binding.DoubleExpression
- All Implemented Interfaces:
NumberExpression
,Observable
,ObservableDoubleValue
,ObservableNumberValue
,ObservableValue<Number>
- Direct Known Subclasses:
DoubleBinding
,ReadOnlyDoubleProperty
public abstract class DoubleExpression
extends NumberExpressionBase
implements ObservableDoubleValue
DoubleExpression
is an
ObservableDoubleValue
plus additional convenience
methods to generate bindings in a fluent style.
A concrete sub-class of DoubleExpression
has to implement the method
ObservableDoubleValue.get()
, which provides the
actual value of this expression.
- Since:
- JavaFX 2.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionadd
(double other) Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.add
(float other) Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.add
(int other) Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.add
(long other) Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.add
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and anotherObservableNumberValue
.asObject()
Creates anObjectExpression
that holds the value of thisDoubleExpression
.divide
(double other) Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.divide
(float other) Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.divide
(int other) Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.divide
(long other) Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.divide
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the division of thisNumberExpression
and anotherObservableNumberValue
.static DoubleExpression
Returns aDoubleExpression
that wraps aObservableDoubleValue
.static <T extends Number>
DoubleExpressiondoubleExpression
(ObservableValue<T> value) Returns aDoubleExpression
that wraps anObservableValue
.double
Returns the value of thisObservableNumberValue
as adouble
.float
Returns the value of thisObservableNumberValue
as afloat
.getValue()
Returns the current value of thisObservableValue
int
intValue()
Returns the value of thisObservableNumberValue
as anint
.long
Returns the value of thisObservableNumberValue
as along
.multiply
(double other) Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.multiply
(float other) Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.multiply
(int other) Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.multiply
(long other) Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.multiply
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the product of thisNumberExpression
and anotherObservableNumberValue
.negate()
Creates a newNumberBinding
that calculates the negation ofNumberExpression
.subtract
(double other) Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.subtract
(float other) Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.subtract
(int other) Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.subtract
(long other) Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.subtract
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and anotherObservableNumberValue
.Methods declared in 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 declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javafx.beans.Observable
addListener, removeListener
Methods declared in interface javafx.beans.value.ObservableDoubleValue
get
Methods declared in interface javafx.beans.value.ObservableValue
addListener, flatMap, map, orElse, removeListener, when
-
Constructor Details
-
DoubleExpression
public DoubleExpression()Creates a defaultDoubleExpression
.
-
-
Method Details
-
intValue
public int intValue()Description copied from interface:ObservableNumberValue
Returns the value of thisObservableNumberValue
as anint
. If the value is not anint
, a standard cast is performed.- Specified by:
intValue
in interfaceObservableNumberValue
- Returns:
- The value of this
ObservableNumberValue
as anint
-
longValue
public long longValue()Description copied from interface:ObservableNumberValue
Returns the value of thisObservableNumberValue
as along
. If the value is not along
, a standard cast is performed.- Specified by:
longValue
in interfaceObservableNumberValue
- Returns:
- The value of this
ObservableNumberValue
as along
-
floatValue
public float floatValue()Description copied from interface:ObservableNumberValue
Returns the value of thisObservableNumberValue
as afloat
. If the value is not afloat
, a standard cast is performed.- Specified by:
floatValue
in interfaceObservableNumberValue
- Returns:
- The value of this
ObservableNumberValue
as afloat
-
doubleValue
public double doubleValue()Description copied from interface:ObservableNumberValue
Returns the value of thisObservableNumberValue
as adouble
. If the value is not adouble
, a standard cast is performed.- Specified by:
doubleValue
in interfaceObservableNumberValue
- Returns:
- The value of this
ObservableNumberValue
as adouble
-
getValue
Description copied from interface:ObservableValue
Returns the current value of thisObservableValue
- Specified by:
getValue
in interfaceObservableValue<Number>
- Returns:
- The current value
-
doubleExpression
Returns aDoubleExpression
that wraps aObservableDoubleValue
. If theObservableDoubleValue
is already aDoubleExpression
, it will be returned. Otherwise a newDoubleBinding
is created that is bound to theObservableDoubleValue
.- Parameters:
value
- The sourceObservableDoubleValue
- Returns:
- A
DoubleExpression
that wraps theObservableDoubleValue
if necessary - Throws:
NullPointerException
- ifvalue
isnull
-
doubleExpression
Returns aDoubleExpression
that wraps anObservableValue
. If theObservableValue
is already aDoubleExpression
, it will be returned. Otherwise a newDoubleBinding
is created that is bound to theObservableValue
.Note: this method can be used to convert an
ObjectExpression
orObjectProperty
of specific number type to DoubleExpression, which is essentially anObservableValue<Number>
. See sample below.
Note: null values will be interpreted as 0.0DoubleProperty doubleProperty = new SimpleDoubleProperty(1.0); ObjectProperty<Double> objectProperty = new SimpleObjectProperty<>(2.0); BooleanBinding binding = doubleProperty.greaterThan(DoubleExpression.doubleExpression(objectProperty));
- Type Parameters:
T
- The type of Number to be wrapped- Parameters:
value
- The sourceObservableValue
- Returns:
- A
DoubleExpression
that wraps theObservableValue
if necessary - Throws:
NullPointerException
- ifvalue
isnull
- Since:
- JavaFX 8.0
-
negate
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the negation ofNumberExpression
.- Specified by:
negate
in interfaceNumberExpression
- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and anotherObservableNumberValue
.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the secondObservableNumberValue
- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and anotherObservableNumberValue
.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the secondObservableNumberValue
- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and anotherObservableNumberValue
.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the secondObservableNumberValue
- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and anotherObservableNumberValue
.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the secondObservableNumberValue
- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
asObject
Creates anObjectExpression
that holds the value of thisDoubleExpression
. If the value of thisDoubleExpression
changes, the value of theObjectExpression
will be updated automatically.- Returns:
- the new
ObjectExpression
- Since:
- JavaFX 8.0
-