Uses of Interface
javafx.beans.value.ObservableIntegerValue
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. |
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter |
Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property . |
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
-
Uses of ObservableIntegerValue in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableIntegerValue Modifier and Type Class Description class
IntegerBinding
Base class that provides most of the functionality needed to implement aBinding
of anint
value.class
IntegerExpression
IntegerExpression
is anObservableIntegerValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableIntegerValue Modifier and Type Method Description static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, ObservableIntegerValue index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings. doubleValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)
Creates a newDoubleBinding
that contains the element of anObservableList
at the specified position.static FloatBinding
Bindings. floatValueAt(ObservableFloatArray op, ObservableIntegerValue index)
Creates a newFloatBinding
that contains the element of anObservableArray
at the specified position.static FloatBinding
Bindings. floatValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)
Creates a newFloatBinding
that contains the element of anObservableList
at the specified position.static IntegerExpression
IntegerExpression. integerExpression(ObservableIntegerValue value)
Returns aIntegerExpression
that wraps aObservableIntegerValue
.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(ObservableList<? extends Number> op, ObservableIntegerValue index)
Creates a newIntegerBinding
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 StringBinding
Bindings. stringValueAt(ObservableList<String> op, ObservableIntegerValue index)
Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static <E> ObjectBinding<E>
Bindings. valueAt(ObservableList<E> op, ObservableIntegerValue index)
Creates a newObjectBinding
that contains the element of anObservableList
at the specified position.ObjectBinding<E>
ListExpression. valueAt(ObservableIntegerValue index)
Creates a newObjectBinding
that contains the element at the specified position. -
Uses of ObservableIntegerValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableIntegerValue Modifier and Type Class Description class
IntegerProperty
This class defines aProperty
wrapping anint
value.class
IntegerPropertyBase
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.class
ReadOnlyIntegerProperty
Superclass for all readonly properties wrapping anint
.class
ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping anint
.class
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.class
SimpleIntegerProperty
This class provides a full implementation of aProperty
wrapping aint
value. -
Uses of ObservableIntegerValue in javafx.beans.property.adapter
Classes in javafx.beans.property.adapter that implement ObservableIntegerValue Modifier and Type Class Description class
JavaBeanIntegerProperty
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.class
ReadOnlyJavaBeanIntegerProperty
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
. -
Uses of ObservableIntegerValue in javafx.css
Classes in javafx.css that implement ObservableIntegerValue Modifier and Type Class Description class
SimpleStyleableIntegerProperty
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
StyleableIntegerProperty
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.