Uses of Class
javafx.beans.binding.IntegerBinding
Package | Description |
---|---|
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
-
Uses of IntegerBinding in javafx.beans.binding
Methods in javafx.beans.binding that return IntegerBinding Modifier and Type Method Description IntegerBinding
IntegerExpression. add(int other)
static IntegerBinding
Bindings. createIntegerBinding(Callable<Integer> func, Observable... dependencies)
Helper function to create a customIntegerBinding
.IntegerBinding
IntegerExpression. divide(int other)
static IntegerBinding
Bindings. integerValueAt(ObservableIntegerArray op, int index)
Creates a newIntegerBinding
that contains the element of anObservableArray
at the specified position.static IntegerBinding
Bindings. integerValueAt(ObservableIntegerArray op, ObservableIntegerValue index)
Creates a newIntegerBinding
that contains the element of anObservableArray
at the specified position.static IntegerBinding
Bindings. integerValueAt(ObservableIntegerArray op, ObservableNumberValue index)
Creates a newIntegerBinding
that contains the element of anObservableArray
at the specified position.static IntegerBinding
Bindings. integerValueAt(ObservableList<? extends Number> op, int index)
Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.static IntegerBinding
Bindings. integerValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)
Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.static IntegerBinding
Bindings. integerValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.static <K> IntegerBinding
Bindings. integerValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)
Creates a newIntegerBinding
that contains the mapping of a specific key in anObservableMap
.static <K> IntegerBinding
Bindings. integerValueAt(ObservableMap<K,? extends Number> op, K key)
Creates a newIntegerBinding
that contains the mapping of a specific key in anObservableMap
.static IntegerBinding
Bindings. length(ObservableStringValue op)
Creates a newIntegerBinding
that holds the length of aObservableStringValue
.IntegerBinding
StringExpression. length()
Creates a newIntegerBinding
that holds the length of thisStringExpression
.IntegerBinding
IntegerExpression. multiply(int other)
IntegerBinding
IntegerExpression. negate()
static IntegerBinding
Bindings. selectInteger(Object root, String... steps)
Creates a binding used to get a member, such asa.b.c
.static IntegerBinding
Bindings. selectInteger(ObservableValue<?> root, String... steps)
Creates a binding used to get a member, such asa.b.c
.static IntegerBinding
Bindings. size(ObservableArray op)
Creates a newIntegerBinding
that contains the size of anObservableArray
.static <E> IntegerBinding
Bindings. size(ObservableList<E> op)
Creates a newIntegerBinding
that contains the size of anObservableList
.static <K, V> IntegerBinding
Bindings. size(ObservableMap<K,V> op)
Creates a newIntegerBinding
that contains the size of anObservableMap
.static <E> IntegerBinding
Bindings. size(ObservableSet<E> op)
Creates a newIntegerBinding
that contains the size of anObservableSet
.IntegerBinding
IntegerExpression. subtract(int other)