Contains Methods for Bindings.
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
trait BindingIncludesobject BindingIncludes.typetrait BeanIncludesobject BeanIncludes.typetrait Includesobject Includes.typeobject Bindings.typeShow all
Members list
Value members
Concrete methods
Returns the sum of a collection of JavaFX `ObservableNumberValue`s.
Returns the sum of a collection of JavaFX `ObservableNumberValue`s.
Value parameters
- v1
-
First Value
- values
-
Collection of values
Attributes
- Returns
-
The Value sum.
Helper function to create a custom BooleanBinding.
Helper function to create a custom BooleanBinding.
Wraps a JavaFX Bindings.createBooleanBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Helper function to create a custom DoubleBinding.
Helper function to create a custom DoubleBinding.
Wraps a JavaFX Bindings.createDoubleBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Helper function to create a custom FloatBinding.
Helper function to create a custom FloatBinding.
Wraps a JavaFX Bindings.createFloatBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Helper function to create a custom IntegerBinding.
Helper function to create a custom IntegerBinding.
Wraps a JavaFX Bindings.createIntegerBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Helper function to create a custom LongBinding.
Helper function to create a custom LongBinding.
Wraps a JavaFX Bindings.createLongBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Helper function to create a custom ObjectBinding.
Helper function to create a custom ObjectBinding.
Wraps a JavaFX Bindings.createObjectBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Helper function to create a custom StringBinding.
Helper function to create a custom StringBinding.
Wraps a JavaFX Bindings.createStringBinding.
Value parameters
- dependencies
-
The dependencies of this binding
- func
-
The function that calculates the value of this binding
Attributes
- Returns
-
The generated binding
Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.
Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.
Value parameters
- v1
-
First Value
- values
-
Collection of values
Attributes
- Returns
-
The Lowest Value
Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.
Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.
Value parameters
- v1
-
First Value
- values
-
Collection of values
Attributes
- Returns
-
The highest Value
Value parameters
- condition
-
Function that returns a JavaFX `ObservableBooleanValue`
Attributes
- Returns
-
A ConditionBuilder wrapping
condition
.