Uses of Interface
javafx.beans.value.ObservableNumberValue
Packages that use ObservableNumberValue
Package
Description
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property
.The package
javafx.beans.value
contains the two
fundamental interfaces ObservableValue
and WritableValue
and all of its sub-interfaces.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.bindingModifier and TypeInterfaceDescriptioninterface
A tagging interface to mark all Bindings that wrap a number-value.interface
NumberExpression
is anObservableNumberValue
plus additional convenience methods to generate bindings in a fluent style.Classes in javafx.beans.binding that implement ObservableNumberValueModifier and TypeClassDescriptionclass
Base class that provides most of the functionality needed to implement aBinding
of adouble
value.class
DoubleExpression
is anObservableDoubleValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of afloat
value.class
FloatExpression
is anObservableFloatValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of anint
value.class
IntegerExpression
is anObservableIntegerValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of along
value.class
LongExpression
is anObservableLongValue
plus additional convenience methods to generate bindings in a fluent style.class
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 ObservableNumberValueModifier and TypeMethodDescriptionstatic 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
.DoubleExpression.add
(ObservableNumberValue other) NumberExpression.add
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and anotherObservableNumberValue
.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
.DoubleExpression.divide
(ObservableNumberValue other) NumberExpression.divide
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the division of thisNumberExpression
and anotherObservableNumberValue
.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.NumberExpression.greaterThan
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than anotherObservableNumberValue
.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.NumberExpression.greaterThanOrEqualTo
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to anotherObservableNumberValue
.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.NumberExpression.isEqualTo
(ObservableNumberValue other) NumberExpression.isEqualTo
(ObservableNumberValue other, double epsilon) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are equal (with a tolerance).NumberExpressionBase.isEqualTo
(ObservableNumberValue other) NumberExpressionBase.isEqualTo
(ObservableNumberValue other, double epsilon) NumberExpression.isNotEqualTo
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal.NumberExpression.isNotEqualTo
(ObservableNumberValue other, double epsilon) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal (with a tolerance).NumberExpressionBase.isNotEqualTo
(ObservableNumberValue other) 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.NumberExpression.lessThan
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than anotherObservableNumberValue
.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.NumberExpression.lessThanOrEqualTo
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to anotherObservableNumberValue
.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
.DoubleExpression.multiply
(ObservableNumberValue other) NumberExpression.multiply
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the product of thisNumberExpression
and anotherObservableNumberValue
.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
.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
.DoubleExpression.subtract
(ObservableNumberValue other) NumberExpression.subtract
(ObservableNumberValue other) Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and anotherObservableNumberValue
.NumberExpressionBase.subtract
(ObservableNumberValue other) 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 ObservableNumberValueModifier and TypeClassDescriptionclass
This class defines aProperty
wrapping adouble
value.class
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
This class defines aProperty
wrapping afloat
value.class
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
This class defines aProperty
wrapping anint
value.class
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.class
This class defines aProperty
wrapping along
value.class
The classLongPropertyBase
is the base class for a property wrapping along
value.class
Superclass for all readonly properties wrapping adouble
.class
Base class for all readonly properties wrapping adouble
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping afloat
.class
Base class for all readonly properties wrapping afloat
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anint
.class
Base class for all readonly properties wrapping anint
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping along
.class
Base class for all readonly properties wrapping along
.class
This class provides a convenient class to define read-only properties.class
This class provides a full implementation of aProperty
wrapping adouble
value.class
This class provides a full implementation of aProperty
wrapping afloat
value.class
This class provides a full implementation of aProperty
wrapping aint
value.class
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 ObservableNumberValueModifier and TypeClassDescriptionfinal class
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.final class
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.final class
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.final class
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.final class
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.final class
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.final class
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.final class
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.valueModifier and TypeInterfaceDescriptioninterface
An observable double value.interface
An observable float value.interface
An observable integer value.interface
An observable long value. -
Uses of ObservableNumberValue in javafx.css
Classes in javafx.css that implement ObservableNumberValueModifier and TypeClassDescriptionclass
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsLongPropertyBase
and provides a partial implementation of aStyleableProperty
.