Uses of Class
javafx.beans.binding.LongBinding
-
Packages that use LongBinding Package Description javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources. -
-
Uses of LongBinding in javafx.beans.binding
Methods in javafx.beans.binding that return LongBinding Modifier and Type Method Description static LongBinding
Bindings. createLongBinding(Callable<Long> func, Observable... dependencies)
Helper function to create a customLongBinding
.static LongBinding
Bindings. longValueAt(ObservableList<? extends Number> op, int index)
Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static LongBinding
Bindings. longValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)
Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static LongBinding
Bindings. longValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static <K> LongBinding
Bindings. longValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)
Creates a newLongBinding
that contains the mapping of a specific key in anObservableMap
.static <K> LongBinding
Bindings. longValueAt(ObservableMap<K,? extends Number> op, K key)
Creates a newLongBinding
that contains the mapping of a specific key in anObservableMap
.static LongBinding
Bindings. selectLong(Object root, String... steps)
Creates a binding used to get a member, such asa.b.c
.static LongBinding
Bindings. selectLong(ObservableValue<?> root, String... steps)
Creates a binding used to get a member, such asa.b.c
.
-