Uses of Interface
javafx.collections.ObservableList
Package
Description
Provides the set of classes for ease of use transition based animations.
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.The package
javafx.beans.value
contains the two
fundamental interfaces ObservableValue
and WritableValue
and all of its sub-interfaces.Contains the essential JavaFX collections and collection utilities
Provides JavaFX collections that wrap and transform (for example, sort
or filter) other JavaFX collections.
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
Provides the core set of base
classes for the JavaFX Scene Graph API.
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
The
javafx.scene.control.cell
package is where all cell-related
classes are located, other than the core classes such as
Cell
, IndexedCell
,
ListCell
, TreeCell
,
and TableCell
.The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
Provides the set of classes for mouse and keyboard input event handling.
Provides classes to support user interface layout.
Provides the set of classes for integrating audio and video into Java FX
Applications.
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
This package provides means for loading and displaying Web content.
Provides the top-level container classes for JavaFX content.
-
Uses of ObservableList in javafx.animation
Modifier and TypeMethodDescriptionfinal ObservableList<Animation>
ParallelTransition.getChildren()
A list ofAnimations
that will be played sequentially.final ObservableList<Animation>
SequentialTransition.getChildren()
A list ofAnimations
that will be played sequentially.final ObservableList<KeyFrame>
Timeline.getKeyFrames()
Returns theKeyFrames
of thisTimeline
. -
Uses of ObservableList in javafx.beans.binding
Modifier and TypeClassDescriptionclass
ListBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableList
.class
ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.Modifier and TypeMethodDescriptionprotected abstract ObservableList<E>
ListBinding.computeValue()
Calculates the current value of this binding.final ObservableList<E>
ListBinding.get()
Returns the result ofListBinding.computeValue()
.Binding.getDependencies()
Returns the dependencies of a binding in an unmodifiableObservableList
.BooleanBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.DoubleBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.FloatBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.IntegerBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.ListBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.LongBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.MapBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.ObjectBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.SetBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.StringBinding.getDependencies()
A default implementation ofgetDependencies()
that returns an emptyObservableList
.ListExpression.getValue()
Modifier and TypeMethodDescriptionstatic <E> void
Bindings.bindContent
(List<E> list1, ObservableList<? extends E> list2) Generates a content binding between anObservableList
and aList
.static <E> void
Bindings.bindContentBidirectional
(ObservableList<E> list1, ObservableList<E> list2) Generates a bidirectional binding (or "bind with inverse") between two instances ofObservableList
.static BooleanBinding
Bindings.booleanValueAt
(ObservableList<Boolean> op, int index) Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings.booleanValueAt
(ObservableList<Boolean> op, ObservableIntegerValue index) Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings.booleanValueAt
(ObservableList<Boolean> op, ObservableNumberValue index) Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings.doubleValueAt
(ObservableList<? extends Number> op, int index) Creates a newDoubleBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings.doubleValueAt
(ObservableList<? extends Number> op, ObservableIntegerValue index) Creates a newDoubleBinding
that contains the element of anObservableList
at the specified position.static DoubleBinding
Bindings.doubleValueAt
(ObservableList<? extends Number> op, ObservableNumberValue index) Creates a newDoubleBinding
that contains the element of anObservableList
at the specified position.static FloatBinding
Bindings.floatValueAt
(ObservableList<? extends Number> op, int index) Creates a newFloatBinding
that contains the element of anObservableList
at the specified position.static FloatBinding
Bindings.floatValueAt
(ObservableList<? extends Number> op, ObservableIntegerValue index) Creates a newFloatBinding
that contains the element of anObservableList
at the specified position.static FloatBinding
Bindings.floatValueAt
(ObservableList<? extends Number> op, ObservableNumberValue index) Creates a newFloatBinding
that contains the element of anObservableList
at the specified position.static IntegerBinding
Bindings.integerValueAt
(ObservableList<? extends Number> op, int index) Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.static IntegerBinding
Bindings.integerValueAt
(ObservableList<? extends Number> op, ObservableIntegerValue index) Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.static IntegerBinding
Bindings.integerValueAt
(ObservableList<? extends Number> op, ObservableNumberValue index) Creates a newIntegerBinding
that contains the element of anObservableList
at the specified position.static <E> BooleanBinding
Bindings.isEmpty
(ObservableList<E> op) ListExpression.isEqualTo
(ObservableList<?> other) static <E> BooleanBinding
Bindings.isNotEmpty
(ObservableList<E> op) ListExpression.isNotEqualTo
(ObservableList<?> other) static LongBinding
Bindings.longValueAt
(ObservableList<? extends Number> op, int index) Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static LongBinding
Bindings.longValueAt
(ObservableList<? extends Number> op, ObservableIntegerValue index) Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static LongBinding
Bindings.longValueAt
(ObservableList<? extends Number> op, ObservableNumberValue index) Creates a newLongBinding
that contains the element of anObservableList
at the specified position.static <E> IntegerBinding
Bindings.size
(ObservableList<E> op) Creates a newIntegerBinding
that contains the size of anObservableList
.static StringBinding
Bindings.stringValueAt
(ObservableList<String> op, int index) Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static StringBinding
Bindings.stringValueAt
(ObservableList<String> op, ObservableIntegerValue index) Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static StringBinding
Bindings.stringValueAt
(ObservableList<String> op, ObservableNumberValue index) Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static <E> ObjectBinding<E>
Bindings.valueAt
(ObservableList<E> op, int index) Creates a newObjectBinding
that contains the element of anObservableList
at the specified position.static <E> ObjectBinding<E>
Bindings.valueAt
(ObservableList<E> op, ObservableIntegerValue index) Creates a newObjectBinding
that contains the element of anObservableList
at the specified position.static <E> ObjectBinding<E>
Bindings.valueAt
(ObservableList<E> op, ObservableNumberValue index) Creates a newObjectBinding
that contains the element of anObservableList
at the specified position.Modifier and TypeMethodDescriptionvoid
ListBinding.addListener
(ChangeListener<? super ObservableList<E>> listener) void
ListBinding.removeListener
(ChangeListener<? super ObservableList<E>> listener) -
Uses of ObservableList in javafx.beans.property
Modifier and TypeClassDescriptionclass
ListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
Superclass for all readonly properties wrapping anObservableList
.class
Base class for all readonly properties wrapping anObservableList
.class
This class provides a convenient class to define read-only properties.class
This class provides a full implementation of aProperty
wrapping anObservableList
.Modifier and TypeMethodDescriptionvoid
ReadOnlyListProperty.bindContent
(ObservableList<E> list) Creates a content binding between theObservableList
, that is wrapped in thisReadOnlyListProperty
, and anotherObservableList
.void
ReadOnlyListProperty.bindContentBidirectional
(ObservableList<E> list) Creates a bidirectional content binding of theObservableList
, that is wrapped in thisReadOnlyListProperty
, and anotherObservableList
.void
ListPropertyBase.set
(ObservableList<E> newValue) void
ListProperty.setValue
(ObservableList<E> v) Set the wrapped value.Modifier and TypeMethodDescriptionvoid
ListPropertyBase.addListener
(ChangeListener<? super ObservableList<E>> listener) void
ReadOnlyListPropertyBase.addListener
(ChangeListener<? super ObservableList<E>> listener) void
ListPropertyBase.bind
(ObservableValue<? extends ObservableList<E>> newObservable) void
ListProperty.bindBidirectional
(Property<ObservableList<E>> other) Create a bidirectional binding between thisProperty
and another one.void
ListPropertyBase.removeListener
(ChangeListener<? super ObservableList<E>> listener) void
ReadOnlyListPropertyBase.removeListener
(ChangeListener<? super ObservableList<E>> listener) void
ListProperty.unbindBidirectional
(Property<ObservableList<E>> other) Removes a bidirectional binding between thisProperty
and another one.ModifierConstructorDescriptionListPropertyBase
(ObservableList<E> initialValue) The constructor of theListPropertyBase
.ReadOnlyListWrapper
(Object bean, String name, ObservableList<E> initialValue) The constructor ofReadOnlyListWrapper
ReadOnlyListWrapper
(ObservableList<E> initialValue) The constructor ofReadOnlyListWrapper
SimpleListProperty
(Object bean, String name, ObservableList<E> initialValue) The constructor ofSimpleListProperty
SimpleListProperty
(ObservableList<E> initialValue) The constructor ofSimpleListProperty
-
Uses of ObservableList in javafx.beans.value
Modifier and TypeInterfaceDescriptioninterface
An observable reference to anObservableList
.interface
A writable reference to anObservableList
. -
Uses of ObservableList in javafx.collections
Modifier and TypeClassDescriptionclass
Abstract class that serves as a base class forObservableList
implementations that are modifiable.class
Abstract class that serves as a base class forObservableList
implementations.Modifier and TypeMethodDescriptionstatic <E> ObservableList<E>
FXCollections.checkedObservableList
(ObservableList<E> list, Class<E> type) Creates and returns a typesafe wrapper on top of provided observable list.static <E> ObservableList<E>
FXCollections.concat
(ObservableList<E>... lists) Concatenates more observable lists into one.static <E> ObservableList<E>
FXCollections.emptyObservableList()
Creates an empty unmodifiable observable list.ListChangeListener.Change.getList()
The source list of the change.static <E> ObservableList<E>
FXCollections.observableArrayList()
Creates a new empty observable list that is backed by an array list.static <E> ObservableList<E>
FXCollections.observableArrayList
(E... items) Creates a new observable array list withitems
added to it.static <E> ObservableList<E>
FXCollections.observableArrayList
(Collection<? extends E> col) Creates a new observable array list and adds a content of collectioncol
to it.static <E> ObservableList<E>
FXCollections.observableArrayList
(Callback<E, Observable[]> extractor) Creates a new emptyObservableList
that is backed by an array list and listens to changes in observables of its items.static <E> ObservableList<E>
FXCollections.observableList
(List<E> list) Constructs an ObservableList that is backed by the specified list.static <E> ObservableList<E>
FXCollections.observableList
(List<E> list, Callback<E, Observable[]> extractor) Constructs anObservableList
that is backed by the specified list and listens to changes in observables of its items.static <E> ObservableList<E>
FXCollections.singletonObservableList
(E e) Creates an unmodifiable observable list with single element.static <E> ObservableList<E>
FXCollections.synchronizedObservableList
(ObservableList<E> list) Creates and returns a synchronized wrapper on top of provided observable list.static <E> ObservableList<E>
FXCollections.unmodifiableObservableList
(ObservableList<E> list) Creates and returns unmodifiable wrapper list on top of provided observable list.Modifier and TypeMethodDescriptionstatic <E> ObservableList<E>
FXCollections.checkedObservableList
(ObservableList<E> list, Class<E> type) Creates and returns a typesafe wrapper on top of provided observable list.static <E> ObservableList<E>
FXCollections.concat
(ObservableList<E>... lists) Concatenates more observable lists into one.static <T> void
FXCollections.copy
(ObservableList<? super T> dest, List<? extends T> src) Copies elements from src to dest.static <T> void
FXCollections.fill
(ObservableList<? super T> list, T obj) Fills the provided list with obj.static <T> boolean
FXCollections.replaceAll
(ObservableList<T> list, T oldVal, T newVal) Replace all oldVal elements in the list with newVal element.static void
FXCollections.reverse
(ObservableList list) Reverses the order in the list.static void
FXCollections.rotate
(ObservableList list, int distance) Rotates the list by distance.static void
FXCollections.shuffle
(ObservableList<?> list) Shuffles all elements in the observable list.static void
FXCollections.shuffle
(ObservableList list, Random rnd) Shuffles all elements in the observable list.static <T extends Comparable<? super T>>
voidFXCollections.sort
(ObservableList<T> list) Sorts the provided observable list as specified inCollections.sort(List)
.static <T> void
FXCollections.sort
(ObservableList<T> list, Comparator<? super T> comparator) Sorts the provided observable list as specified inCollections.sort(List, Comparator)
.static <E> ObservableList<E>
FXCollections.synchronizedObservableList
(ObservableList<E> list) Creates and returns a synchronized wrapper on top of provided observable list.static <E> ObservableList<E>
FXCollections.unmodifiableObservableList
(ObservableList<E> list) Creates and returns unmodifiable wrapper list on top of provided observable list.ModifierConstructorDescriptionChange
(ObservableList<E> list) Constructs a new Change instance on the given list. -
Uses of ObservableList in javafx.collections.transformation
Modifier and TypeClassDescriptionfinal class
FilteredList<E>
Wraps an ObservableList and filters its content using the provided Predicate.final class
SortedList<E>
Wraps an ObservableList and sorts its content.class
TransformationList<E,
F> A base class for all lists that wrap another list in a way that changes (transforms) the wrapped list's elements, order, size, or structure.Modifier and TypeMethodDescriptionfinal ObservableList<? extends F>
TransformationList.getSource()
The source list specified in the constructor of this transformation list.Modifier and TypeMethodDescriptionfinal int
TransformationList.getSourceIndexFor
(ObservableList<?> list, int index) Maps the index of this list's element to an index of the providedlist
.final boolean
TransformationList.isInTransformationChain
(ObservableList<?> list) Checks whether the provided list is in the chain under thisTransformationList
.ModifierConstructorDescriptionFilteredList
(ObservableList<E> source) Constructs a new FilteredList wrapper around the source list.FilteredList
(ObservableList<E> source, Predicate<? super E> predicate) Constructs a new FilteredList wrapper around the source list.SortedList
(ObservableList<? extends E> source) Constructs a new unordered SortedList wrapper around the source list.SortedList
(ObservableList<? extends E> source, Comparator<? super E> comparator) Creates a new SortedList wrapped around the source list.protected
TransformationList
(ObservableList<? extends F> source) Creates a new Transformation list wrapped around the source list. -
Uses of ObservableList in javafx.css
Modifier and TypeMethodDescriptionstatic ObservableList<CssParser.ParseError>
CssParser.errorsProperty()
List of errors that may have occurred during CSS processing.final ObservableList<Declaration>
Rule.getDeclarations()
This method is to support tooling that may want to add declarations to or remove declarations from a Rule.final ObservableList<Selector>
Rule.getSelectors()
This method is to support tooling that may want to add selectors to or remove selectors from a Rule.Styleable.getStyleClass()
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine. -
Uses of ObservableList in javafx.scene
Modifier and TypeMethodDescriptionGroup.getChildren()
Gets the list of children of thisGroup
.protected ObservableList<Node>
Parent.getChildren()
Gets the list of children of thisParent
.Parent.getChildrenUnmodifiable()
Gets the list of children of thisParent
as a read-only list.LightBase.getExclusionScope()
Gets the list of nodes that specifies the hierarchical exclusion scope of this light.LightBase.getScope()
Gets the list of nodes that specifies the hierarchical scope of this light.final ObservableList<String>
Node.getStyleClass()
final ObservableList<String>
Parent.getStylesheets()
Gets an observable list of string URLs linking to the stylesheets to use with this Parent's contents.final ObservableList<String>
Scene.getStylesheets()
Gets an observable list of string URLs linking to the stylesheets to use with this scene's contents.final ObservableList<Transform>
Node.getTransforms()
Modifier and TypeMethodDescriptionScene.getMnemonics()
Gets the list of mnemonics for thisScene
. -
Uses of ObservableList in javafx.scene.chart
Modifier and TypeMethodDescriptionfinal ObservableList<String>
CategoryAxis.getCategories()
Returns aObservableList
of categories plotted on this axis.protected ObservableList<Node>
Chart.getChartChildren()
Modifiable and observable list of all content in the chart.final ObservableList<PieChart.Data>
PieChart.getData()
Gets the value of thedata
property.final ObservableList<XYChart.Series<X,
Y>> XYChart.getData()
Gets the value of thedata
property.final ObservableList<XYChart.Data<X,
Y>> XYChart.Series.getData()
Gets the value of thedata
property.protected ObservableList<Node>
XYChart.getPlotChildren()
Modifiable and observable list of all content in the plot.Axis.getTickMarks()
Unmodifiable observable list of tickmarks, each TickMark directly representing a tickmark on this axis.Modifier and TypeMethodDescriptionPieChart.dataProperty()
PieCharts datafinal ObjectProperty<ObservableList<XYChart.Series<X,
Y>>> XYChart.dataProperty()
XYCharts datafinal ObjectProperty<ObservableList<XYChart.Data<X,
Y>>> XYChart.Series.dataProperty()
ObservableList of data items that make up this seriesModifier and TypeMethodDescriptionfinal void
CategoryAxis.setCategories
(ObservableList<String> value) The ordered list of categories plotted on this axis.final void
PieChart.setData
(ObservableList<PieChart.Data> value) Sets the value of thedata
property.final void
XYChart.Series.setData
(ObservableList<XYChart.Data<X, Y>> value) Sets the value of thedata
property.final void
XYChart.setData
(ObservableList<XYChart.Series<X, Y>> value) Sets the value of thedata
property.ModifierConstructorDescriptionAreaChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new Area Chart with the given axis and dataBarChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new BarChart with the given axis and data.BarChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data, double categoryGap) Construct a new BarChart with the given axis and data.BubbleChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new BubbleChart with the given axis and data.CategoryAxis
(ObservableList<String> categories) Create a category axis with the given categories.LineChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new LineChart with the given axis and data.PieChart
(ObservableList<PieChart.Data> data) Construct a new PieChart with the given dataScatterChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new ScatterChart with the given axis and data.Series
(String name, ObservableList<XYChart.Data<X, Y>> data) Constructs a named Series and populates it with the givenObservableList
data.Series
(ObservableList<XYChart.Data<X, Y>> data) Constructs a Series and populates it with the givenObservableList
data.StackedAreaChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new Area Chart with the given axis and data.StackedBarChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data) Construct a new StackedBarChart with the given axis and data.StackedBarChart
(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X, Y>> data, double categoryGap) Construct a new StackedBarChart with the given axis and data. -
Uses of ObservableList in javafx.scene.control
Modifier and TypeMethodDescriptionfinal ObservableList<Node>
ButtonBar.getButtons()
Placing buttons inside this ObservableList will instruct the ButtonBar to position them relative to each other based on their specifiedButtonBar.ButtonData
.final ObservableList<ButtonType>
Alert.getButtonTypes()
Returns anObservableList
of allButtonType
instances that are currently set inside this Alert instance.final ObservableList<ButtonType>
DialogPane.getButtonTypes()
Observable list of button types used for the dialog button bar area (created via theDialogPane.createButtonBar()
method).final ObservableList<Node>
SkinBase.getChildren()
Returns the children of the skin.TreeItem.getChildren()
The children of this TreeItem.final ObservableList<TableColumn<S,
?>> TableColumn.getColumns()
This enables support for nested columns, which can be useful to group together related data.abstract ObservableList<? extends TableColumnBase<S,
?>> TableColumnBase.getColumns()
This enables support for nested columns, which can be useful to group together related data.final ObservableList<TableColumn<S,
?>> TableView.getColumns()
The TableColumns that are part of this TableView.final ObservableList<TreeTableColumn<S,
?>> TreeTableColumn.getColumns()
This enables support for nested columns, which can be useful to group together related data.final ObservableList<TreeTableColumn<S,
?>> TreeTableView.getColumns()
The TreeTableColumns that are part of this TableView.final ObservableList<Color>
ColorPicker.getCustomColors()
Gets the list of custom colors added to the Color Palette by the user.SplitPane.getDividers()
Returns an unmodifiable list of all the dividers in this SplitPane.final ObservableList<T>
ChoiceBox.getItems()
Gets the value of theitems
property.final ObservableList<T>
ChoiceDialog.getItems()
Returns the list of all items that will be displayed to users.final ObservableList<T>
ComboBox.getItems()
Gets the value of theitems
property.final ObservableList<MenuItem>
ContextMenu.getItems()
The menu items on the context menu.final ObservableList<T>
ListView.getItems()
Returns anObservableList
that contains the items currently being shown to the user.final ObservableList<MenuItem>
Menu.getItems()
The items to show within this menu.final ObservableList<MenuItem>
MenuButton.getItems()
The items to show within this buttons menu.final ObservableList<T>
SpinnerValueFactory.ListSpinnerValueFactory.getItems()
Returns anObservableList
that contains the items currently able to be iterated through by the user.SplitPane.getItems()
Returns an ObservableList which can be use to modify the contents of the SplitPane.final ObservableList<S>
TableView.getItems()
Gets the value of theitems
property.final ObservableList<Node>
ToolBar.getItems()
The items contained in theToolBar
.final ObservableList<Menu>
MenuBar.getMenus()
The menus to show within this MenuBar.final ObservableList<TitledPane>
Accordion.getPanes()
Gets the list ofTitledPane
in this Accordion.TextArea.getParagraphs()
Returns an unmodifiable list of the character sequences that back the text area's content.abstract ObservableList<TablePosition>
TableView.TableViewSelectionModel.getSelectedCells()
A read-only ObservableList representing the currently selected cells in this TableView.abstract ObservableList<TreeTablePosition<S,
?>> TreeTableView.TreeTableViewSelectionModel.getSelectedCells()
A read-only ObservableList representing the currently selected cells in this TreeTableView.abstract ObservableList<Integer>
MultipleSelectionModel.getSelectedIndices()
Returns a read-only ObservableList of all selected indices.abstract ObservableList<T>
MultipleSelectionModel.getSelectedItems()
Returns a read-only ObservableList of all selected items.final ObservableList<TableColumn<S,
?>> TableView.getSortOrder()
The sortOrder list defines the order in whichTableColumn
instances are sorted.final ObservableList<TreeTableColumn<S,
?>> TreeTableView.getSortOrder()
The sortOrder list defines the order in whichTreeTableColumn
instances are sorted.MenuItem.getStyleClass()
final ObservableList<String>
PopupControl.getStyleClass()
Returns the list of String identifiers that make up the styleClass for this PopupControl.Tab.getStyleClass()
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.TableColumnBase.getStyleClass()
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.final ObservableList<Tab>
TabPane.getTabs()
The tabs to display in this TabPane.final ObservableList<Toggle>
ToggleGroup.getToggles()
The list of toggles within the ToggleGroup.TableView.getVisibleLeafColumns()
Returns an unmodifiable list containing the currently visible leaf columns.TreeTableView.getVisibleLeafColumns()
Returns an unmodifiable list containing the currently visible leaf columns.Modifier and TypeMethodDescriptionfinal ObjectProperty<ObservableList<T>>
ChoiceBox.itemsProperty()
The items to display in the choice box.ComboBox.itemsProperty()
The list of items to show within the ComboBox popup.final ObjectProperty<ObservableList<T>>
ListView.itemsProperty()
The underlying data model for the ListView.final ObjectProperty<ObservableList<T>>
SpinnerValueFactory.ListSpinnerValueFactory.itemsProperty()
The underlying data model for the ListView.final ObjectProperty<ObservableList<S>>
TableView.itemsProperty()
The underlying data model for the TableView.Modifier and TypeMethodDescriptionprotected final void
SkinBase.registerListChangeListener
(ObservableList<?> observableList, Consumer<ListChangeListener.Change<?>> operation) Registers an operation to perform when the givenobservableList
sends a list change event.final void
ChoiceBox.setItems
(ObservableList<T> value) Sets the value of theitems
property.final void
ComboBox.setItems
(ObservableList<T> value) Sets the value of theitems
property.final void
ListView.setItems
(ObservableList<T> value) Sets the underlying data model for the ListView.final void
SpinnerValueFactory.ListSpinnerValueFactory.setItems
(ObservableList<T> value) Sets the underlying data model for the ListSpinnerValueFactory.final void
TableView.setItems
(ObservableList<S> value) Sets the value of theitems
property.protected final Consumer<ListChangeListener.Change<?>>
SkinBase.unregisterListChangeListeners
(ObservableList<?> observableList) Unregisters all operations that have been registered usingSkinBase.registerListChangeListener(ObservableList, Consumer)
for the givenobservableList
.ModifierConstructorDescriptionChoiceBox
(ObservableList<T> items) Create a new ChoiceBox with the given set of items.ComboBox
(ObservableList<T> items) Creates a default ComboBox instance with the provided items list and a defaultselection model
.ListSpinnerValueFactory
(ObservableList<T> items) Creates a new instance of the ListSpinnerValueFactory with the given list used as the list to step through.ListView
(ObservableList<T> items) Creates a default ListView which will stack the contents retrieved from the providedObservableList
vertically.Spinner
(ObservableList<T> items) Creates a Spinner instance with thevalue factory
set to be an instance ofSpinnerValueFactory.ListSpinnerValueFactory
.TableView
(ObservableList<S> items) Creates a TableView with the content provided in the items ObservableList. -
Uses of ObservableList in javafx.scene.control.cell
Modifier and TypeMethodDescriptionChoiceBoxListCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.ChoiceBoxTableCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.ChoiceBoxTreeCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.ChoiceBoxTreeTableCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.ComboBoxListCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.ComboBoxTableCell.getItems()
Returns the items to be displayed in the ComboBox when it is showing.ComboBoxTreeCell.getItems()
Returns the items to be displayed in the ComboBox when it is showing.ComboBoxTreeTableCell.getItems()
Returns the items to be displayed in the ComboBox when it is showing.Modifier and TypeMethodDescriptionChoiceBoxListCell.forListView
(ObservableList<T> items) Creates a ChoiceBox cell factory for use inListView
controls.ChoiceBoxListCell.forListView
(StringConverter<T> converter, ObservableList<T> items) Creates a ChoiceBox cell factory for use inListView
controls.ComboBoxListCell.forListView
(ObservableList<T> items) Creates a ComboBox cell factory for use inListView
controls.ComboBoxListCell.forListView
(StringConverter<T> converter, ObservableList<T> items) Creates a ComboBox cell factory for use inListView
controls.static <S,
T> Callback<TableColumn<S, T>, TableCell<S, T>> ChoiceBoxTableCell.forTableColumn
(ObservableList<T> items) Creates a ChoiceBox cell factory for use inTableColumn
controls.static <S,
T> Callback<TableColumn<S, T>, TableCell<S, T>> ChoiceBoxTableCell.forTableColumn
(StringConverter<T> converter, ObservableList<T> items) Creates a ChoiceBox cell factory for use inTableColumn
controls.static <S,
T> Callback<TableColumn<S, T>, TableCell<S, T>> ComboBoxTableCell.forTableColumn
(ObservableList<T> items) Creates a ComboBox cell factory for use inTableColumn
controls.static <S,
T> Callback<TableColumn<S, T>, TableCell<S, T>> ComboBoxTableCell.forTableColumn
(StringConverter<T> converter, ObservableList<T> items) Creates a ComboBox cell factory for use inTableColumn
controls.static <S,
T> Callback<TreeTableColumn<S, T>, TreeTableCell<S, T>> ChoiceBoxTreeTableCell.forTreeTableColumn
(ObservableList<T> items) Creates a ChoiceBox cell factory for use inTreeTableColumn
controls.static <S,
T> Callback<TreeTableColumn<S, T>, TreeTableCell<S, T>> ChoiceBoxTreeTableCell.forTreeTableColumn
(StringConverter<T> converter, ObservableList<T> items) Creates a ChoiceBox cell factory for use inTreeTableColumn
controls.static <S,
T> Callback<TreeTableColumn<S, T>, TreeTableCell<S, T>> ComboBoxTreeTableCell.forTreeTableColumn
(ObservableList<T> items) Creates a ComboBox cell factory for use inTreeTableColumn
controls.static <S,
T> Callback<TreeTableColumn<S, T>, TreeTableCell<S, T>> ComboBoxTreeTableCell.forTreeTableColumn
(StringConverter<T> converter, ObservableList<T> items) Creates a ComboBox cell factory for use inTreeTableColumn
controls.ChoiceBoxTreeCell.forTreeView
(ObservableList<T> items) Creates a ChoiceBox cell factory for use inTreeView
controls.ChoiceBoxTreeCell.forTreeView
(StringConverter<T> converter, ObservableList<T> items) Creates a ChoiceBox cell factory for use inTreeView
controls.ComboBoxTreeCell.forTreeView
(ObservableList<T> items) Creates a ComboBox cell factory for use inTreeView
controls.ComboBoxTreeCell.forTreeView
(StringConverter<T> converter, ObservableList<T> items) Creates a ComboBox cell factory for use inTreeView
controls.ModifierConstructorDescriptionChoiceBoxListCell
(ObservableList<T> items) Creates a defaultChoiceBoxListCell
instance with the given items being used to populate theChoiceBox
when it is shown.ChoiceBoxListCell
(StringConverter<T> converter, ObservableList<T> items) Creates aChoiceBoxListCell
instance with the given items being used to populate theChoiceBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ChoiceBoxTableCell
(ObservableList<T> items) Creates a defaultChoiceBoxTableCell
instance with the given items being used to populate theChoiceBox
when it is shown.ChoiceBoxTableCell
(StringConverter<T> converter, ObservableList<T> items) Creates aChoiceBoxTableCell
instance with the given items being used to populate theChoiceBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ChoiceBoxTreeCell
(ObservableList<T> items) Creates a defaultChoiceBoxTreeCell
instance with the given items being used to populate theChoiceBox
when it is shown.ChoiceBoxTreeCell
(StringConverter<T> converter, ObservableList<T> items) Creates aChoiceBoxTreeCell
instance with the given items being used to populate theChoiceBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ChoiceBoxTreeTableCell
(ObservableList<T> items) Creates a defaultChoiceBoxTreeTableCell
instance with the given items being used to populate theChoiceBox
when it is shown.ChoiceBoxTreeTableCell
(StringConverter<T> converter, ObservableList<T> items) Creates aChoiceBoxTreeTableCell
instance with the given items being used to populate theChoiceBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ComboBoxListCell
(ObservableList<T> items) Creates a defaultComboBoxListCell
instance with the given items being used to populate theComboBox
when it is shown.ComboBoxListCell
(StringConverter<T> converter, ObservableList<T> items) Creates aComboBoxListCell
instance with the given items being used to populate theComboBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ComboBoxTableCell
(ObservableList<T> items) Creates a defaultComboBoxTableCell
instance with the given items being used to populate theComboBox
when it is shown.ComboBoxTableCell
(StringConverter<T> converter, ObservableList<T> items) Creates aComboBoxTableCell
instance with the given items being used to populate theComboBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ComboBoxTreeCell
(ObservableList<T> items) Creates a defaultComboBoxTreeCell
instance with the given items being used to populate theComboBox
when it is shown.ComboBoxTreeCell
(StringConverter<T> converter, ObservableList<T> items) Creates aComboBoxTreeCell
instance with the given items being used to populate theComboBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form.ComboBoxTreeTableCell
(ObservableList<T> items) Creates a defaultComboBoxTreeTableCell
instance with the given items being used to populate theComboBox
when it is shown.ComboBoxTreeTableCell
(StringConverter<T> converter, ObservableList<T> items) Creates aComboBoxTreeTableCell
instance with the given items being used to populate theComboBox
when it is shown, and theStringConverter
being used to convert the item in to a user-readable form. -
Uses of ObservableList in javafx.scene.control.skin
Modifier and TypeMethodDescriptionfinal ObservableList<TableColumnHeader>
NestedTableColumnHeader.getColumnHeaders()
Returns an unmodifiable list of theTableColumnHeader
instances that are children of this NestedTableColumnHeader.protected ObservableList<TableColumn<T,
?>> TableRowSkin.getVisibleLeafColumns()
Returns an unmodifiable list containing the currently visible leaf columns.protected abstract ObservableList<? extends TableColumnBase>
TableRowSkinBase.getVisibleLeafColumns()
Returns an unmodifiable list containing the currently visible leaf columns.protected ObservableList<TreeTableColumn<T,
?>> TreeTableRowSkin.getVisibleLeafColumns()
Returns an unmodifiable list containing the currently visible leaf columns. -
Uses of ObservableList in javafx.scene.input
Modifier and TypeMethodDescriptionfinal ObservableList<InputMethodTextRun>
InputMethodEvent.getComposed()
Gets the text under composition. -
Uses of ObservableList in javafx.scene.layout
Modifier and TypeMethodDescriptionPane.getChildren()
final ObservableList<ColumnConstraints>
GridPane.getColumnConstraints()
Returns list of column constraints.final ObservableList<RowConstraints>
GridPane.getRowConstraints()
Returns list of row constraints. -
Uses of ObservableList in javafx.scene.media
Modifier and TypeMethodDescriptionfinal ObservableList<EqualizerBand>
AudioEqualizer.getBands()
ObservableList containingEqualizerBand
elements.final ObservableList<Track>
Media.getTracks()
Retrieve the tracks contained in this media source. -
Uses of ObservableList in javafx.scene.shape
Modifier and TypeMethodDescriptionfinal ObservableList<PathElement>
Path.getElements()
Gets observable list of path elements of this path.final ObservableList<Double>
Polygon.getPoints()
Gets the coordinates of thePolygon
vertices.final ObservableList<Double>
Polyline.getPoints()
Gets the coordinates of thePolyLine
segments.final ObservableList<Double>
Shape.getStrokeDashArray()
Defines the array representing the lengths of the dash segments. -
Uses of ObservableList in javafx.scene.web
Modifier and TypeMethodDescriptionWebHistory.getEntries()
Returns an unmodifiable observable list of all entries in the history. -
Uses of ObservableList in javafx.stage
Modifier and TypeMethodDescriptionfinal ObservableList<Node>
Popup.getContent()
The ObservableList ofNode
s to be rendered on thisPopup
.FileChooser.getExtensionFilters()
Gets the extension filters used in the displayed file dialog.final ObservableList<Image>
Stage.getIcons()
Gets the icon images to be used in the window decorations and when minimized.static ObservableList<Screen>
Screen.getScreens()
The observable list of currently availableScreens
.static ObservableList<Screen>
Screen.getScreensForRectangle
(double x, double y, double width, double height) Returns a ObservableList ofScreens
that intersects the provided rectangle.static ObservableList<Screen>
Screen.getScreensForRectangle
(Rectangle2D r) Returns a ObservableList ofScreens
that intersects the provided rectangle.static ObservableList<Window>
Window.getWindows()
Returns a list containing a reference to the currently showing JavaFX windows.