Uses of Interface
javafx.beans.value.ObservableNumberValue
Package | Description |
---|---|
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter |
Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property . |
javafx.beans.value |
The package
javafx.beans.value contains the two
fundamental interfaces ObservableValue and WritableValue and all of its sub-interfaces. |
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
-
Uses of ObservableNumberValue in javafx.beans.binding
Subinterfaces of ObservableNumberValue in javafx.beans.binding Modifier and Type Interface Description interface
NumberBinding
A tagging interface to mark all Bindings that wrap a number-value.interface
NumberExpression
NumberExpression
is anObservableNumberValue
plus additional convenience methods to generate bindings in a fluent style.Classes in javafx.beans.binding that implement ObservableNumberValue Modifier and Type Class Description class
DoubleBinding
Base class that provides most of the functionality needed to implement aBinding
of adouble
value.class
DoubleExpression
DoubleExpression
is anObservableDoubleValue
plus additional convenience methods to generate bindings in a fluent style.class
FloatBinding
Base class that provides most of the functionality needed to implement aBinding
of afloat
value.class
FloatExpression
FloatExpression
is anObservableFloatValue
plus additional convenience methods to generate bindings in a fluent style.class
IntegerBinding
Base class that provides most of the functionality needed to implement aBinding
of anint
value.class
IntegerExpression
IntegerExpression
is anObservableIntegerValue
plus additional convenience methods to generate bindings in a fluent style.class
LongBinding
Base class that provides most of the functionality needed to implement aBinding
of along
value.class
LongExpression
LongExpression
is anObservableLongValue
plus additional convenience methods to generate bindings in a fluent style.class
NumberExpressionBase
NumberExpressionBase
contains convenience methods to generate bindings in a fluent style, that are common to all NumberExpression subclasses.Methods in javafx.beans.binding with parameters of type ObservableNumberValue Modifier and Type Method Description static DoubleBinding
Bindings. add(double op1, ObservableNumberValue op2)
Creates a newDoubleBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(float op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(int op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(long op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static DoubleBinding
Bindings. add(ObservableNumberValue op1, double op2)
Creates a newDoubleBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(ObservableNumberValue op1, float op2)
Creates a newNumberBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(ObservableNumberValue op1, int op2)
Creates a newNumberBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(ObservableNumberValue op1, long op2)
Creates a newNumberBinding
that calculates the sum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. add(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the sum of the values of two instances ofObservableNumberValue
.DoubleBinding
DoubleExpression. add(ObservableNumberValue other)
NumberBinding
NumberExpression. add(ObservableNumberValue other)
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and anotherObservableNumberValue
.NumberBinding
NumberExpressionBase. add(ObservableNumberValue other)
static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, ObservableNumberValue index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings. divide(double op1, ObservableNumberValue op2)
Creates a newDoubleBinding
that calculates the division of a constant value and the value of aObservableNumberValue
.static NumberBinding
Bindings. divide(float op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the division of a constant value and the value of aObservableNumberValue
.static NumberBinding
Bindings. divide(int op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the division of a constant value and the value of aObservableNumberValue
.static NumberBinding
Bindings. divide(long op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the division of a constant value and the value of aObservableNumberValue
.static DoubleBinding
Bindings. divide(ObservableNumberValue op1, double op2)
Creates a newDoubleBinding
that calculates the division of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. divide(ObservableNumberValue op1, float op2)
Creates a newNumberBinding
that calculates the division of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. divide(ObservableNumberValue op1, int op2)
Creates a newNumberBinding
that calculates the division of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. divide(ObservableNumberValue op1, long op2)
Creates a newNumberBinding
that calculates the division of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. divide(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the division of the values of two instances ofObservableNumberValue
.DoubleBinding
DoubleExpression. divide(ObservableNumberValue other)
NumberBinding
NumberExpression. divide(ObservableNumberValue other)
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and anotherObservableNumberValue
.NumberBinding
NumberExpressionBase. divide(ObservableNumberValue other)
static DoubleBinding
Bindings. doubleValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
Creates a newDoubleBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings. equal(double op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(float op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(int op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(long op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, double op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, float op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, int op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, long op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are equal.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are equal (with a tolerance).static FloatBinding
Bindings. floatValueAt(ObservableFloatArray op, ObservableNumberValue index)
Creates a newFloatBinding
that contains the element of anObservableArray
at the specified position.static FloatBinding
Bindings. floatValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
Creates a newFloatBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings. greaterThan(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is greater than the value of the second.BooleanBinding
NumberExpression. greaterThan(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. greaterThan(ObservableNumberValue other)
static BooleanBinding
Bindings. greaterThanOrEqual(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is greater than or equal to the value of the second.BooleanBinding
NumberExpression. greaterThanOrEqualTo(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. greaterThanOrEqualTo(ObservableNumberValue other)
static IntegerBinding
Bindings. integerValueAt(ObservableIntegerArray op, ObservableNumberValue index)
Creates a newIntegerBinding
that contains the element of anObservableArray
at the specified position.static IntegerBinding
Bindings. integerValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.BooleanBinding
NumberExpression. isEqualTo(ObservableNumberValue other)
BooleanBinding
NumberExpression. isEqualTo(ObservableNumberValue other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are equal (with a tolerance).BooleanBinding
NumberExpressionBase. isEqualTo(ObservableNumberValue other)
BooleanBinding
NumberExpressionBase. isEqualTo(ObservableNumberValue other, double epsilon)
BooleanBinding
NumberExpression. isNotEqualTo(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal.BooleanBinding
NumberExpression. isNotEqualTo(ObservableNumberValue other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal (with a tolerance).BooleanBinding
NumberExpressionBase. isNotEqualTo(ObservableNumberValue other)
BooleanBinding
NumberExpressionBase. isNotEqualTo(ObservableNumberValue other, double epsilon)
static BooleanBinding
Bindings. lessThan(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is less than the value of the second.BooleanBinding
NumberExpression. lessThan(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. lessThan(ObservableNumberValue other)
static BooleanBinding
Bindings. lessThanOrEqual(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is less than or equal to the value of the second.BooleanBinding
NumberExpression. lessThanOrEqualTo(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. lessThanOrEqualTo(ObservableNumberValue other)
static LongBinding
Bindings. longValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings. max(double op1, ObservableNumberValue op2)
Creates a newDoubleBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(float op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(int op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(long op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static DoubleBinding
Bindings. max(ObservableNumberValue op1, double op2)
Creates a newDoubleBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(ObservableNumberValue op1, float op2)
Creates a newNumberBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(ObservableNumberValue op1, int op2)
Creates a newNumberBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(ObservableNumberValue op1, long op2)
Creates a newNumberBinding
that calculates the maximum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. max(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the maximum of the values of two instances ofObservableNumberValue
.static DoubleBinding
Bindings. min(double op1, ObservableNumberValue op2)
Creates a newDoubleBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(float op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(int op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(long op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static DoubleBinding
Bindings. min(ObservableNumberValue op1, double op2)
Creates a newDoubleBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(ObservableNumberValue op1, float op2)
Creates a newNumberBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(ObservableNumberValue op1, int op2)
Creates a newNumberBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(ObservableNumberValue op1, long op2)
Creates a newNumberBinding
that calculates the minimum of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. min(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the minimum of the values of two instances ofObservableNumberValue
.static DoubleBinding
Bindings. multiply(double op1, ObservableNumberValue op2)
Creates a newDoubleBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(float op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(int op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(long op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static DoubleBinding
Bindings. multiply(ObservableNumberValue op1, double op2)
Creates a newDoubleBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(ObservableNumberValue op1, float op2)
Creates a newNumberBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(ObservableNumberValue op1, int op2)
Creates a newNumberBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(ObservableNumberValue op1, long op2)
Creates a newNumberBinding
that calculates the product of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. multiply(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the product of the values of two instances ofObservableNumberValue
.DoubleBinding
DoubleExpression. multiply(ObservableNumberValue other)
NumberBinding
NumberExpression. multiply(ObservableNumberValue other)
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and anotherObservableNumberValue
.NumberBinding
NumberExpressionBase. multiply(ObservableNumberValue other)
static NumberBinding
Bindings. negate(ObservableNumberValue value)
Creates a newNumberBinding
that calculates the negation of aObservableNumberValue
.static BooleanBinding
Bindings. notEqual(double op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(float op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(int op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(long op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, double op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, float op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, int op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, long op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are not equal.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are not equal (with a tolerance).static <S extends Number>
NumberExpressionBaseNumberExpressionBase. numberExpression(ObservableNumberValue value)
Returns anNumberExpressionBase
that wraps aObservableNumberValue
.NumberBinding
When.NumberConditionBuilder. otherwise(ObservableNumberValue otherwiseValue)
Defines theObservableNumberValue
which value is returned by the ternary expression if the condition isfalse
.static StringBinding
Bindings. stringValueAt(ObservableList<String> op, ObservableNumberValue index)
Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings. subtract(double op1, ObservableNumberValue op2)
Creates a newDoubleBinding
that calculates the difference of a constant value and the value of aObservableNumberValue
.static NumberBinding
Bindings. subtract(float op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the difference of a constant value and the value of aObservableNumberValue
.static NumberBinding
Bindings. subtract(int op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the difference of a constant value and the value of aObservableNumberValue
.static NumberBinding
Bindings. subtract(long op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the difference of a constant value and the value of aObservableNumberValue
.static DoubleBinding
Bindings. subtract(ObservableNumberValue op1, double op2)
Creates a newDoubleBinding
that calculates the difference of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. subtract(ObservableNumberValue op1, float op2)
Creates a newNumberBinding
that calculates the difference of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. subtract(ObservableNumberValue op1, int op2)
Creates a newNumberBinding
that calculates the difference of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. subtract(ObservableNumberValue op1, long op2)
Creates a newNumberBinding
that calculates the difference of the value of aObservableNumberValue
and a constant value.static NumberBinding
Bindings. subtract(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newNumberBinding
that calculates the difference of the values of two instances ofObservableNumberValue
.DoubleBinding
DoubleExpression. subtract(ObservableNumberValue other)
NumberBinding
NumberExpression. subtract(ObservableNumberValue other)
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and anotherObservableNumberValue
.NumberBinding
NumberExpressionBase. subtract(ObservableNumberValue other)
When.NumberConditionBuilder
When. then(ObservableNumberValue thenValue)
Defines theObservableNumberValue
which value is returned by the ternary expression if the condition istrue
.static <E> ObjectBinding<E>
Bindings. valueAt(ObservableList<E> op, ObservableNumberValue index)
Creates a newObjectBinding
that contains the element of anObservableList
at the specified position. -
Uses of ObservableNumberValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableNumberValue Modifier and Type Class Description class
DoubleProperty
This class defines aProperty
wrapping adouble
value.class
DoublePropertyBase
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
FloatProperty
This class defines aProperty
wrapping afloat
value.class
FloatPropertyBase
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
IntegerProperty
This class defines aProperty
wrapping anint
value.class
IntegerPropertyBase
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.class
LongProperty
This class defines aProperty
wrapping along
value.class
LongPropertyBase
The classLongPropertyBase
is the base class for a property wrapping along
value.class
ReadOnlyDoubleProperty
Superclass for all readonly properties wrapping adouble
.class
ReadOnlyDoublePropertyBase
Base class for all readonly properties wrapping adouble
.class
ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyFloatProperty
Superclass for all readonly properties wrapping afloat
.class
ReadOnlyFloatPropertyBase
Base class for all readonly properties wrapping afloat
.class
ReadOnlyFloatWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyIntegerProperty
Superclass for all readonly properties wrapping anint
.class
ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping anint
.class
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyLongProperty
Superclass for all readonly properties wrapping along
.class
ReadOnlyLongPropertyBase
Base class for all readonly properties wrapping along
.class
ReadOnlyLongWrapper
This class provides a convenient class to define read-only properties.class
SimpleDoubleProperty
This class provides a full implementation of aProperty
wrapping adouble
value.class
SimpleFloatProperty
This class provides a full implementation of aProperty
wrapping afloat
value.class
SimpleIntegerProperty
This class provides a full implementation of aProperty
wrapping aint
value.class
SimpleLongProperty
This class provides a full implementation of aProperty
wrapping along
value. -
Uses of ObservableNumberValue in javafx.beans.property.adapter
Classes in javafx.beans.property.adapter that implement ObservableNumberValue Modifier and Type Class Description class
JavaBeanDoubleProperty
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.class
JavaBeanFloatProperty
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.class
JavaBeanIntegerProperty
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.class
JavaBeanLongProperty
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.class
ReadOnlyJavaBeanDoubleProperty
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.class
ReadOnlyJavaBeanFloatProperty
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.class
ReadOnlyJavaBeanIntegerProperty
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.class
ReadOnlyJavaBeanLongProperty
AReadOnlyJavaBeanLongProperty
provides an adapter between a regular read only Java Bean property of typelong
orLong
and a JavaFXReadOnlyLongProperty
. -
Uses of ObservableNumberValue in javafx.beans.value
Subinterfaces of ObservableNumberValue in javafx.beans.value Modifier and Type Interface Description interface
ObservableDoubleValue
An observable double value.interface
ObservableFloatValue
An observable float value.interface
ObservableIntegerValue
An observable integer value.interface
ObservableLongValue
An observable long value. -
Uses of ObservableNumberValue in javafx.css
Classes in javafx.css that implement ObservableNumberValue Modifier and Type Class Description class
SimpleStyleableDoubleProperty
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableFloatProperty
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableIntegerProperty
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableLongProperty
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.class
StyleableDoubleProperty
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableFloatProperty
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableIntegerProperty
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableLongProperty
This class extendsLongPropertyBase
and provides a partial implementation of aStyleableProperty
.