Creates a new javafx.beans.binding.BooleanBinding
that holds true
if the value of a javafx.beans.value.ObservableNumberValue
is not
equal to a constant value (with a tolerance).
Two operands a
and b
are considered equal if
Math.abs(a-b) <= epsilon
.
Allowing a small tolerance is recommended when comparing floating-point numbers because of rounding-errors.
op1
| the ObservableNumberValue | |
op2
| the constant value | |
epsilon
| the permitted tolerance |
BooleanBinding
NullPointerException
| if the ObservableNumberValue is null |
Diagram: Bindings