Uses of Class
javafx.beans.binding.LongBinding
Package
Description
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.-
Uses of LongBinding in javafx.beans.binding
Modifier and TypeMethodDescriptionIntegerExpression.add
(long other) LongExpression.add
(int other) LongExpression.add
(long other) static LongBinding
Bindings.createLongBinding
(Callable<Long> func, Observable... dependencies) Helper function to create a customLongBinding
.IntegerExpression.divide
(long other) LongExpression.divide
(int other) LongExpression.divide
(long other) 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
.IntegerExpression.multiply
(long other) LongExpression.multiply
(int other) LongExpression.multiply
(long other) LongExpression.negate()
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
.IntegerExpression.subtract
(long other) LongExpression.subtract
(int other) LongExpression.subtract
(long other)