Uses of Interface
javafx.collections.ObservableIntegerArray
-
Packages that use ObservableIntegerArray Package Description javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources.javafx.collections Contains the essential JavaFX collections and collection utilitiesjavafx.scene.shape Provides the set of 2D classes for defining and performing operations on objects related to two-dimensional geometry. -
-
Uses of ObservableIntegerArray in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type ObservableIntegerArray Modifier and Type Method Description 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. -
Uses of ObservableIntegerArray in javafx.collections
Methods in javafx.collections that return ObservableIntegerArray Modifier and Type Method Description static ObservableIntegerArray
FXCollections. observableIntegerArray()
Creates a new empty observable integer array.static ObservableIntegerArray
FXCollections. observableIntegerArray(int... values)
Creates a new observable integer array withvalues
set to it.static ObservableIntegerArray
FXCollections. observableIntegerArray(ObservableIntegerArray array)
Creates a new observable integer array with copy of elements in givenarray
.Methods in javafx.collections with parameters of type ObservableIntegerArray Modifier and Type Method Description void
ObservableIntegerArray. addAll(ObservableIntegerArray src)
Appends content of a given observable array to the end of this array.void
ObservableIntegerArray. addAll(ObservableIntegerArray src, int srcIndex, int length)
Appends a portion of given observable array to the end of this array.void
ObservableIntegerArray. copyTo(int srcIndex, ObservableIntegerArray dest, int destIndex, int length)
Copies specified portion of array intodest
observable array.static ObservableIntegerArray
FXCollections. observableIntegerArray(ObservableIntegerArray array)
Creates a new observable integer array with copy of elements in givenarray
.void
ObservableIntegerArray. set(int destIndex, ObservableIntegerArray src, int srcIndex, int length)
Copies a portion of specified observable array into this observable array.void
ObservableIntegerArray. setAll(ObservableIntegerArray src)
Replaces this observable array content with a copy of given observable array.void
ObservableIntegerArray. setAll(ObservableIntegerArray src, int srcIndex, int length)
Replaces this observable array content with a portion of a given observable array. -
Uses of ObservableIntegerArray in javafx.scene.shape
Subinterfaces of ObservableIntegerArray in javafx.scene.shape Modifier and Type Interface Description interface
ObservableFaceArray
ObservableFaceArray
is anint[]
array that allows listeners to track changes when they occur.Methods in javafx.scene.shape that return ObservableIntegerArray Modifier and Type Method Description ObservableIntegerArray
TriangleMesh. getFaceSmoothingGroups()
Gets thefaceSmoothingGroups
array of thisTriangleMesh
.
-