Interface ObservableFloatArray
All Superinterfaces:
public interface ObservableFloatArray extends ObservableArray<ObservableFloatArray>
ObservableFloatArray is a float[] array that allows listeners to track changes when they occur. In order to track changes, the internal array is encapsulated and there is no direct access available from the outside. Bulk operations are supported but they always do a copy of the data range.Since:
JavaFX 8.0
See Also:
-
Method Summary
All MethodsInstance MethodsAbstract Methods Modifier and Type Method and Description voidaddAll(float... elements)Appends givenelementsto the end of this array.voidaddAll(float[] src, int srcIndex, int length)Appends a portion of given array to the end of this array.voidaddAll(ObservableFloatArray src)Appends content of a given observable array to the end of this array.voidaddAll(ObservableFloatArray src, int srcIndex, int length)Appends a portion of given observable array to the end of this array.voidcopyTo(int srcIndex, float[] dest, int destIndex, int length)Copies specified portion of array intodestarray.voidcopyTo(int srcIndex, ObservableFloatArray dest, int destIndex, int length)Copies specified portion of array intodestobservable array.floatget(int index)Gets a single value of array.voidset(int index, float value)Sets a single value in the array.voidset(int destIndex, float[] src, int srcIndex, int length)Copies a portion of specified array into this observable array.voidset(int destIndex, ObservableFloatArray src, int srcIndex, int length)Copies a portion of specified observable array into this observable array.voidsetAll(float... elements)Replaces this observable array content with given elements.voidsetAll(float[] src, int srcIndex, int length)Replaces this observable array content with a copy of portion of a given array.voidsetAll(ObservableFloatArray src)Replaces this observable array content with a copy of given observable array.voidsetAll(ObservableFloatArray src, int srcIndex, int length)Replaces this observable array content with a portion of a given observable array.float[]toArray(float[] dest)Returns an array containing copy of the observable array.float[]toArray(int srcIndex, float[] dest, int length)Returns an array containing copy of specified portion of the observable array.-
Methods inherited from interface javafx.collections.ObservableArray
addListener, clear, ensureCapacity, removeListener, resize, size, trimToSize
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
-
Method Detail
-
copyTo
void copyTo(int srcIndex, float[] dest, int destIndex, int length)Copies specified portion of array intodestarray. Throws the same exceptions asSystem.arraycopy()method.Parameters:
srcIndex- starting position in the observable array
-
copyTo
void copyTo(int srcIndex, ObservableFloatArray dest, int destIndex, int length)Copies specified portion of array intodestobservable array. Throws the same exceptions asSystem.arraycopy()method.Parameters:
srcIndex- starting position in the observable array
-
get
float get(int index)
Gets a single value of array. This is generally as fast as direct access to an array and eliminates necessity to make a copy of array.Parameters:
index- index of element to getReturns:
value at the given index
Throws:
ArrayIndexOutOfBoundsException- ifindexis outside array bounds
-
addAll
void addAll(float... elements)
Appends givenelementsto the end of this array. Capacity is increased if necessary to match the new size of the data.Parameters:
elements- elements to append
-
addAll
void addAll(ObservableFloatArray src)
Appends content of a given observable array to the end of this array. Capacity is increased if necessary to match the new size of the data.Parameters:
src- observable array with elements to append
-
addAll
void addAll(float[] src, int srcIndex, int length)Appends a portion of given array to the end of this array. Capacity is increased if necessary to match the new size of the data.Parameters:
src- source array
-
addAll
void addAll(ObservableFloatArray src, int srcIndex, int length)Appends a portion of given observable array to the end of this array. Capacity is increased if necessary to match the new size of the data.Parameters:
src- source observable array
-
setAll
void setAll(float... elements)
Replaces this observable array content with given elements. Capacity is increased if necessary to match the new size of the data.Parameters:
elements- elements to put into array contentThrows:
NullPointerException- ifsrcis null
-
setAll
void setAll(float[] src, int srcIndex, int length)Replaces this observable array content with a copy of portion of a given array. Capacity is increased if necessary to match the new size of the data.Parameters:
src- source array to copy.Throws:
NullPointerException- ifsrcis null
-
setAll
void setAll(ObservableFloatArray src)
Replaces this observable array content with a copy of given observable array. Capacity is increased if necessary to match the new size of the data.Parameters:
src- source observable array to copy.Throws:
NullPointerException- ifsrcis null
-
setAll
void setAll(ObservableFloatArray src, int srcIndex, int length)Replaces this observable array content with a portion of a given observable array. Capacity is increased if necessary to match the new size of the data.Parameters:
src- source observable array to copy.Throws:
NullPointerException- ifsrcis null
-
set
void set(int destIndex, float[] src, int srcIndex, int length)Copies a portion of specified array into this observable array. Throws the same exceptions asSystem.arraycopy()method.Parameters:
destIndex- the starting destination position in this observable array
-
set
void set(int destIndex, ObservableFloatArray src, int srcIndex, int length)Copies a portion of specified observable array into this observable array. Throws the same exceptions asSystem.arraycopy()method.Parameters:
destIndex- the starting destination position in this observable array
-
set
void set(int index, float value)Sets a single value in the array. Avoid using this method if many values are updated, use set(int, float[], int, int) update method instead with as minimum number of invocations as possible.Parameters:
index- index of the value to setThrows:
ArrayIndexOutOfBoundsException- ifindexis outside array bounds
-
toArray
float[] toArray(float[] dest)
Returns an array containing copy of the observable array. If the observable array fits in the specified array, it is copied therein. Otherwise, a new array is allocated with the size of the observable array.Parameters:
dest- the array into which the observable array to be copied, if it is big enough; otherwise, a new float array is allocated. Ignored, if null.Returns:
a float array containing the copy of the observable array
-
toArray
float[] toArray(int srcIndex, float[] dest, int length)Returns an array containing copy of specified portion of the observable array. If specified portion of the observable array fits in the specified array, it is copied therein. Otherwise, a new array of given length is allocated.Parameters:
srcIndex- starting position in the observable arrayReturns:
a float array containing the copy of specified portion the observable array
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.