public static BooleanBinding notEqual (ObservableNumberValue op1, long op2, double epsilon)

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.

Parameters:
op1     the ObservableNumberValue
op2     the constant value
epsilon     the permitted tolerance

Returns:  the new BooleanBinding

Exceptions:
NullPointerException     if the ObservableNumberValue is null