Example usage for Java javafx.beans.binding NumberBinding fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addListener(ChangeListener super T> listener) Adds a ChangeListener which will be notified whenever the value of the ObservableValue changes. |
NumberBinding | divide(final ObservableNumberValue other) Creates a new javafx.beans.binding.NumberBinding that calculates the division of this NumberExpression and another javafx.beans.value.ObservableNumberValue . |
T | getValue() Returns the current value of this ObservableValue |
int | intValue() Returns the value of this ObservableNumberValue as an int . |
boolean | isValid() Checks if a binding is valid. |
NumberBinding | multiply(final ObservableNumberValue other) Creates a new javafx.beans.binding.NumberBinding that calculates the product of this NumberExpression and another javafx.beans.value.ObservableNumberValue . |