Module javafx.base
Package javafx.collections
Contains the essential JavaFX collections and collection utilities
-
Interface Summary 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 afloat[]
array that allows listeners to track changes when they occur.ObservableIntegerArray ObservableIntegerArray
is anint[]
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 Summary 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 changes done to anObservableList
.MapChangeListener.Change<K,V> An elementary change done to an ObservableMap.ModifiableObservableListBase<E> Abstract class that serves as a base class forObservableList
implementations that are modifiable.ObservableArrayBase<T extends ObservableArray<T>> Abstract class that serves as a base class forObservableArray
implementations.ObservableListBase<E> Abstract class that serves as a base class forObservableList
implementations.SetChangeListener.Change<E> An elementary change done to an ObservableSet.WeakListChangeListener<E> AWeakListChangeListener
can be used, if anObservableList
should only maintain a weak reference to the listener.WeakMapChangeListener<K,V> AWeakMapChangeListener
can be used, if anObservableMap
should only maintain a weak reference to the listener.WeakSetChangeListener<E> AWeakSetChangeListener
can be used, if anObservableSet
should only maintain a weak reference to the listener.