Uses of Interface
javafx.beans.value.ObservableIntegerValue
| Package | Description | 
|---|---|
| javafx.beans.binding | Provides classes that create and operate on a  Bindingthat calculates a value that depends on one or more sources. | 
| javafx.beans.property | The package  javafx.beans.propertydefines 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.bindingClasses in javafx.beans.binding that implement ObservableIntegerValue Modifier and Type Class Description classIntegerBindingBase class that provides most of the functionality needed to implement aBindingof anintvalue.classIntegerExpressionIntegerExpressionis anObservableIntegerValueplus 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 BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, ObservableIntegerValue index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static FloatBindingBindings. floatValueAt(ObservableFloatArray op, ObservableIntegerValue index)Creates a newFloatBindingthat contains the element of anObservableArrayat the specified position.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static IntegerExpressionIntegerExpression. integerExpression(ObservableIntegerValue value)Returns aIntegerExpressionthat wraps aObservableIntegerValue.static IntegerBindingBindings. integerValueAt(ObservableIntegerArray op, ObservableIntegerValue index)Creates a newIntegerBindingthat contains the element of anObservableArrayat the specified position.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static StringBindingBindings. stringValueAt(ObservableList<String> op, ObservableIntegerValue index)Creates a newStringBindingthat contains the element of anObservableListat the specified position.static <E> ObjectBinding<E>Bindings. valueAt(ObservableList<E> op, ObservableIntegerValue index)Creates a newObjectBindingthat contains the element of anObservableListat the specified position.ObjectBinding<E>ListExpression. valueAt(ObservableIntegerValue index)Creates a newObjectBindingthat contains the element at the specified position.
- 
Uses of ObservableIntegerValue in javafx.beans.propertyClasses in javafx.beans.property that implement ObservableIntegerValue Modifier and Type Class Description classIntegerPropertyThis class defines aPropertywrapping anintvalue.classIntegerPropertyBaseThe classIntegerPropertyBaseis the base class for a property wrapping aintvalue.classReadOnlyIntegerPropertySuperclass for all readonly properties wrapping anint.classReadOnlyIntegerPropertyBaseBase class for all readonly properties wrapping anint.classReadOnlyIntegerWrapperThis class provides a convenient class to define read-only properties.classSimpleIntegerPropertyThis class provides a full implementation of aPropertywrapping aintvalue.
- 
Uses of ObservableIntegerValue in javafx.beans.property.adapterClasses in javafx.beans.property.adapter that implement ObservableIntegerValue Modifier and Type Class Description classJavaBeanIntegerPropertyAJavaBeanIntegerPropertyprovides an adapter between a regular Java Bean property of typeintorIntegerand a JavaFXIntegerProperty.classReadOnlyJavaBeanIntegerPropertyAReadOnlyJavaBeanIntegerPropertyprovides an adapter between a regular read only Java Bean property of typeintorIntegerand a JavaFXReadOnlyIntegerProperty.
- 
Uses of ObservableIntegerValue in javafx.cssClasses in javafx.css that implement ObservableIntegerValue Modifier and Type Class Description classSimpleStyleableIntegerPropertyThis class extendsSimpleIntegerPropertyand provides a full implementation of aStyleableProperty.classStyleableIntegerPropertyThis class extendsIntegerPropertyBaseand provides a partial implementation of aStyleableProperty.