Uses of Class
javafx.beans.binding.DoubleBinding
-
Packages that use DoubleBinding Package Description javafx.beans.binding Provides classes that create and operate on aBindingthat calculates a value that depends on one or more sources. -
-
Uses of DoubleBinding in javafx.beans.binding
Methods in javafx.beans.binding that return DoubleBinding Modifier and Type Method Description static DoubleBindingBindings. add(double op1, ObservableNumberValue op2)Creates a newDoubleBindingthat calculates the sum of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. add(ObservableNumberValue op1, double op2)Creates a newDoubleBindingthat calculates the sum of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. createDoubleBinding(Callable<Double> func, Observable... dependencies)Helper function to create a customDoubleBinding.static DoubleBindingBindings. divide(double op1, ObservableNumberValue op2)Creates a newDoubleBindingthat calculates the division of a constant value and the value of aObservableNumberValue.static DoubleBindingBindings. divide(ObservableNumberValue op1, double op2)Creates a newDoubleBindingthat calculates the division of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, int index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static <K> DoubleBindingBindings. doubleValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)Creates a newDoubleBindingthat contains the mapping of a specific key in anObservableMap.static <K> DoubleBindingBindings. doubleValueAt(ObservableMap<K,? extends Number> op, K key)Creates a newDoubleBindingthat contains the mapping of a specific key in anObservableMap.static DoubleBindingBindings. max(double op1, ObservableNumberValue op2)Creates a newDoubleBindingthat calculates the maximum of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. max(ObservableNumberValue op1, double op2)Creates a newDoubleBindingthat calculates the maximum of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. min(double op1, ObservableNumberValue op2)Creates a newDoubleBindingthat calculates the minimum of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. min(ObservableNumberValue op1, double op2)Creates a newDoubleBindingthat calculates the minimum of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. multiply(double op1, ObservableNumberValue op2)Creates a newDoubleBindingthat calculates the product of the value of aObservableNumberValueand a constant value.static DoubleBindingBindings. multiply(ObservableNumberValue op1, double op2)Creates a newDoubleBindingthat calculates the product of the value of aObservableNumberValueand a constant value.DoubleBindingWhen.NumberConditionBuilder. otherwise(double otherwiseValue)Defines a constant value of the ternary expression, that is returned if the condition isfalse.static DoubleBindingBindings. selectDouble(Object root, String... steps)Creates a binding used to get a member, such asa.b.c.static DoubleBindingBindings. selectDouble(ObservableValue<?> root, String... steps)Creates a binding used to get a member, such asa.b.c.static DoubleBindingBindings. subtract(double op1, ObservableNumberValue op2)Creates a newDoubleBindingthat calculates the difference of a constant value and the value of aObservableNumberValue.static DoubleBindingBindings. subtract(ObservableNumberValue op1, double op2)Creates a newDoubleBindingthat calculates the difference of the value of aObservableNumberValueand a constant value.
-