Package javafx.collections
Contains the essential JavaFX collections and collection utilities
See: Description
| Interface | Description |
|---|---|
| ArrayChangeListener<T extends ObservableArray<T>> | Interface that receives notifications of changes to an ObservableArray. |
| ListChangeListener<E> | Interface that receives notifications of changes to an ObservableList. |
| MapChangeListener<K,V> | Interface that receives notifications of changes to an ObservableMap. |
| ObservableArray<T extends ObservableArray<T>> | ObservableArray is an array that allows listeners to track changes when they occur. |
| ObservableFloatArray | ObservableFloatArray is a float[] array that allows listeners to track changes when they occur. |
| ObservableIntegerArray | ObservableIntegerArray is a int[] array that allows listeners to track changes when they occur. |
| ObservableList<E> | A list that allows listeners to track changes when they occur. |
| ObservableMap<K,V> | A map that allows observers to track changes when they occur. |
| ObservableSet<E> | A set that allows observers to track changes when they occur. |
| SetChangeListener<E> | Interface that receives notifications of changes to an ObservableSet. |
| Class | Description |
|---|---|
| FXCollections | Utility class that consists of static methods that are 1:1 copies of java.util.Collections methods. |
| ListChangeListener.Change<E> | Represents a report of a changes done to an Observablelist. |
| MapChangeListener.Change<K,V> | An elementary change done to an ObservableMap. |
| ModifiableObservableListBase<E> | Abstract class that serves as a base class for ObservableList implementations that are modifiable. |
| ObservableArrayBase<T extends ObservableArray<T>> | Abstract class that serves as a base class for ObservableArray implementations. |
| ObservableListBase<E> | Abstract class that serves as a base class for ObservableList implementations. |
| SetChangeListener.Change<E> | An elementary change done to an ObservableSet. |
| WeakListChangeListener<E> | A WeakListChangeListener can be used, if an ObservableList should only maintain a weak reference to the listener. |
| WeakMapChangeListener<K,V> | A WeakMapChangeListener can be used, if an ObservableMap should only maintain a weak reference to the listener. |
| WeakSetChangeListener<E> | A WeakSetChangeListener can be used, if an ObservableSet should only maintain a weak reference to the listener. |
Package javafx.collections Description
Contains the essential JavaFX collections and collection utilities
© 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.