Uses of Interface
javafx.collections.ObservableList
| Package | Description |
|---|---|
| javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
| javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
| javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
| javafx.beans.value |
The package
javafx.beans.value contains the two
fundamental interfaces ObservableValue and WritableValue and all of its sub-interfaces. |
| javafx.collections |
Contains the essential JavaFX collections and collection utilities
|
| javafx.collections.transformation |
Provides JavaFX collections that wrap and transform (for example, sort
or filter) other JavaFX collections.
|
| javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
| javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
| javafx.scene.chart |
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
|
| javafx.scene.control |
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.
|
| javafx.scene.control.cell |
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. |
| javafx.scene.control.skin |
The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
|
| javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
| javafx.scene.layout |
Provides classes to support user interface layout.
|
| javafx.scene.media |
Provides the set of classes for integrating audio and video into Java FX
Applications.
|
| javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
| javafx.scene.web |
This package provides means for loading and displaying Web content.
|
| javafx.stage |
Provides the top-level container classes for JavaFX content.
|
-
Uses of ObservableList in javafx.animation
Methods in javafx.animation that return ObservableList Modifier and Type Method Description ObservableList<Animation>ParallelTransition. getChildren()A list ofAnimationsthat will be played sequentially.ObservableList<Animation>SequentialTransition. getChildren()A list ofAnimationsthat will be played sequentially.ObservableList<KeyFrame>Timeline. getKeyFrames()Returns theKeyFramesof thisTimeline. -
Uses of ObservableList in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableList Modifier and Type Class Description classListBinding<E>Base class that provides most of the functionality needed to implement aBindingof anObservableList.classListExpression<E>ListExpressionis anObservableListValueplus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding that return ObservableList Modifier and Type Method Description protected abstract ObservableList<E>ListBinding. computeValue()Calculates the current value of this binding.ObservableList<E>ListBinding. get()Returns the result ofListBinding.computeValue().ObservableList<?>Binding. getDependencies()Returns the dependencies of a binding in an unmodifiableObservableList.ObservableList<?>BooleanBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>DoubleBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>FloatBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>IntegerBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>ListBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>LongBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>MapBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>ObjectBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>SetBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.ObservableList<?>StringBinding. getDependencies()A default implementation ofgetDependencies()that returns an emptyObservableList.Methods in javafx.beans.binding with parameters of type ObservableList Modifier and Type Method Description static <E> voidBindings. bindContent(List<E> list1, ObservableList<? extends E> list2)Generates a content binding between anObservableListand aList.static <E> voidBindings. bindContentBidirectional(ObservableList<E> list1, ObservableList<E> list2)Generates a bidirectional binding (or "bind with inverse") between two instances ofObservableList.static BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, int index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, ObservableIntegerValue index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, ObservableNumberValue index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, int index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, int index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, int index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static <E> BooleanBindingBindings. isEmpty(ObservableList<E> op)BooleanBindingListExpression. isEqualTo(ObservableList<?> other)static <E> BooleanBindingBindings. isNotEmpty(ObservableList<E> op)BooleanBindingListExpression. isNotEqualTo(ObservableList<?> other)static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, int index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static <E> IntegerBindingBindings. size(ObservableList<E> op)Creates a newIntegerBindingthat contains the size of anObservableList.static StringBindingBindings. stringValueAt(ObservableList<String> op, int index)Creates a newStringBindingthat contains the element of anObservableListat the specified position.static StringBindingBindings. stringValueAt(ObservableList<String> op, ObservableIntegerValue index)Creates a newStringBindingthat contains the element of anObservableListat the specified position.static StringBindingBindings. stringValueAt(ObservableList<String> op, ObservableNumberValue index)Creates a newStringBindingthat contains the element of anObservableListat the specified position.static <E> ObjectBinding<E>Bindings. valueAt(ObservableList<E> op, int index)Creates a newObjectBindingthat contains the element of anObservableListat the specified position.static <E> ObjectBinding<E>Bindings. valueAt(ObservableList<E> op, ObservableIntegerValue index)Creates a newObjectBindingthat contains the element of anObservableListat the specified position.static <E> ObjectBinding<E>Bindings. valueAt(ObservableList<E> op, ObservableNumberValue index)Creates a newObjectBindingthat contains the element of anObservableListat the specified position. -
Uses of ObservableList in javafx.beans.property
Classes in javafx.beans.property that implement ObservableList Modifier and Type Class Description classListProperty<E>This class provides a full implementation of aPropertywrapping anObservableList.classListPropertyBase<E>The classListPropertyBaseis the base class for a property wrapping anObservableList.classReadOnlyListProperty<E>Superclass for all readonly properties wrapping anObservableList.classReadOnlyListPropertyBase<E>Base class for all readonly properties wrapping anObservableList.classReadOnlyListWrapper<E>This class provides a convenient class to define read-only properties.classSimpleListProperty<E>This class provides a full implementation of aPropertywrapping anObservableList.Methods in javafx.beans.property with parameters of type ObservableList Modifier and Type Method Description voidReadOnlyListProperty. bindContent(ObservableList<E> list)Creates a content binding between theObservableList, that is wrapped in thisReadOnlyListProperty, and anotherObservableList.voidReadOnlyListProperty. bindContentBidirectional(ObservableList<E> list)Creates a bidirectional content binding of theObservableList, that is wrapped in thisReadOnlyListProperty, and anotherObservableList.Constructors in javafx.beans.property with parameters of type ObservableList Constructor Description ListPropertyBase(ObservableList<E> initialValue)The constructor of theListPropertyBase.ReadOnlyListWrapper(Object bean, String name, ObservableList<E> initialValue)The constructor ofReadOnlyListWrapperReadOnlyListWrapper(ObservableList<E> initialValue)The constructor ofReadOnlyListWrapperSimpleListProperty(Object bean, String name, ObservableList<E> initialValue)The constructor ofSimpleListPropertySimpleListProperty(ObservableList<E> initialValue)The constructor ofSimpleListProperty -
Uses of ObservableList in javafx.beans.value
Subinterfaces of ObservableList in javafx.beans.value Modifier and Type Interface Description interfaceObservableListValue<E>An observable reference to anObservableList.interfaceWritableListValue<E>A writable reference to anObservableList. -
Uses of ObservableList in javafx.collections
Classes in javafx.collections that implement ObservableList Modifier and Type Class Description classModifiableObservableListBase<E>Abstract class that serves as a base class forObservableListimplementations that are modifiable.classObservableListBase<E>Abstract class that serves as a base class forObservableListimplementations.Methods in javafx.collections that return ObservableList Modifier and Type Method Description static <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.ObservableList<E>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 withitemsadded to it.static <E> ObservableList<E>FXCollections. observableArrayList(Collection<? extends E> col)Creates a new observable array list and adds a content of collectioncolto it.static <E> ObservableList<E>FXCollections. observableArrayList(Callback<E,Observable[]> extractor)Creates a new emptyObservableListthat 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 anObservableListthat 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.Methods in javafx.collections with parameters of type ObservableList Modifier and Type Method Description static <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> voidFXCollections. copy(ObservableList<? super T> dest, List<? extends T> src)Copies elements from src to dest.static <T> voidFXCollections. fill(ObservableList<? super T> list, T obj)Fills the provided list with obj.static <T> booleanFXCollections. replaceAll(ObservableList<T> list, T oldVal, T newVal)Replace all oldVal elements in the list with newVal element.static voidFXCollections. reverse(ObservableList list)Reverses the order in the list.static voidFXCollections. rotate(ObservableList list, int distance)Rotates the list by distance.static voidFXCollections. shuffle(ObservableList<?> list)Shuffles all elements in the observable list.static voidFXCollections. 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.static <T> voidFXCollections. sort(ObservableList<T> list, Comparator<? super T> c)Sorts the provided observable list using the c 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.Constructors in javafx.collections with parameters of type ObservableList Constructor Description Change(ObservableList<E> list)Constructs a new Change instance on the given list. -
Uses of ObservableList in javafx.collections.transformation
Classes in javafx.collections.transformation that implement ObservableList Modifier and Type Class Description classFilteredList<E>Wraps an ObservableList and filters its content using the provided Predicate.classSortedList<E>Wraps an ObservableList and sorts its content.classTransformationList<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.Methods in javafx.collections.transformation that return ObservableList Modifier and Type Method Description ObservableList<? extends F>TransformationList. getSource()The source list specified in the constructor of this transformation list.Methods in javafx.collections.transformation with parameters of type ObservableList Modifier and Type Method Description intTransformationList. getSourceIndexFor(ObservableList<?> list, int index)Maps the index of this list's element to an index of the providedlist.booleanTransformationList. isInTransformationChain(ObservableList<?> list)Checks whether the provided list is in the chain under thisTransformationList.Constructors in javafx.collections.transformation with parameters of type ObservableList Constructor Description FilteredList(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.TransformationList(ObservableList<? extends F> source)Creates a new Transformation list wrapped around the source list. -
Uses of ObservableList in javafx.css
Methods in javafx.css that return ObservableList Modifier and Type Method Description static ObservableList<CssParser.ParseError>CssParser. errorsProperty()List of errors that may have occurred during CSS processing.ObservableList<Declaration>Rule. getDeclarations()This method is to support tooling that may want to add declarations to or remove declarations from a Rule.ObservableList<Selector>Rule. getSelectors()This method is to support tooling that may want to add selectors to or remove selectors from a Rule.ObservableList<String>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
Methods in javafx.scene that return ObservableList Modifier and Type Method Description ObservableList<Node>Group. getChildren()Gets the list of children of thisGroup.protected ObservableList<Node>Parent. getChildren()Gets the list of children of thisParent.ObservableList<Node>Parent. getChildrenUnmodifiable()Gets the list of children of thisParentas a read-only list.ObservableList<Node>LightBase. getExclusionScope()Gets the list of nodes that specifies the hierarchical exclusion scope of this light.ObservableList<Node>LightBase. getScope()Gets the list of nodes that specifies the hierarchical scope of this light.ObservableList<String>Parent. getStylesheets()Gets an observable list of string URLs linking to the stylesheets to use with this Parent's contents.ObservableList<String>Scene. getStylesheets()Gets an observable list of string URLs linking to the stylesheets to use with this scene's contents.ObservableList<Transform>Node. getTransforms()Methods in javafx.scene that return types with arguments of type ObservableList Modifier and Type Method Description ObservableMap<KeyCombination,ObservableList<Mnemonic>>Scene. getMnemonics()Gets the list of mnemonics for thisScene. -
Uses of ObservableList in javafx.scene.chart
Methods in javafx.scene.chart that return ObservableList Modifier and Type Method Description ObservableList<String>CategoryAxis. getCategories()Returns aObservableListof categories plotted on this axis.protected ObservableList<Node>Chart. getChartChildren()Modifiable and observable list of all content in the chart.ObservableList<PieChart.Data>PieChart. getData()Gets the value of the property data.ObservableList<XYChart.Series<X,Y>>XYChart. getData()Gets the value of the property data.ObservableList<XYChart.Data<X,Y>>XYChart.Series. getData()Gets the value of the property data.protected ObservableList<Node>XYChart. getPlotChildren()Modifiable and observable list of all content in the plot.ObservableList<Axis.TickMark<T>>Axis. getTickMarks()Unmodifiable observable list of tickmarks, each TickMark directly representing a tickmark on this axis.Methods in javafx.scene.chart that return types with arguments of type ObservableList Modifier and Type Method Description ObjectProperty<ObservableList<PieChart.Data>>PieChart. dataProperty()PieCharts dataObjectProperty<ObservableList<XYChart.Series<X,Y>>>XYChart. dataProperty()XYCharts dataObjectProperty<ObservableList<XYChart.Data<X,Y>>>XYChart.Series. dataProperty()ObservableList of data items that make up this seriesMethods in javafx.scene.chart with parameters of type ObservableList Modifier and Type Method Description voidCategoryAxis. setCategories(ObservableList<String> value)The ordered list of categories plotted on this axis.voidPieChart. setData(ObservableList<PieChart.Data> value)Sets the value of the property data.voidXYChart.Series. setData(ObservableList<XYChart.Data<X,Y>> value)Sets the value of the property data.voidXYChart. setData(ObservableList<XYChart.Series<X,Y>> value)Sets the value of the property data.Constructors in javafx.scene.chart with parameters of type ObservableList Constructor Description AreaChart(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 givenObservableListdata.Series(ObservableList<XYChart.Data<X,Y>> data)Constructs a Series and populates it with the givenObservableListdata.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
Methods in javafx.scene.control that return ObservableList Modifier and Type Method Description 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.ObservableList<ButtonType>Alert. getButtonTypes()Returns anObservableListof allButtonTypeinstances that are currently set inside this Alert instance.ObservableList<ButtonType>DialogPane. getButtonTypes()Observable list of button types used for the dialog button bar area (created via theDialogPane.createButtonBar()method).ObservableList<Node>SkinBase. getChildren()Returns the children of the skin.ObservableList<TreeItem<T>>TreeItem. getChildren()The children of this TreeItem.abstract ObservableList<? extends TableColumnBase<S,?>>TableColumnBase. getColumns()This enables support for nested columns, which can be useful to group together related data.ObservableList<TableColumn<S,?>>TableView. getColumns()The TableColumns that are part of this TableView.ObservableList<TreeTableColumn<S,?>>TreeTableView. getColumns()The TreeTableColumns that are part of this TableView.ObservableList<Color>ColorPicker. getCustomColors()Gets the list of custom colors added to the Color Palette by the user.ObservableList<SplitPane.Divider>SplitPane. getDividers()Returns an unmodifiable list of all the dividers in this SplitPane.ObservableList<T>ChoiceBox. getItems()Gets the value of the property items.ObservableList<T>ChoiceDialog. getItems()Returns the list of all items that will be displayed to users.ObservableList<T>ComboBox. getItems()Gets the value of the property items.ObservableList<MenuItem>ContextMenu. getItems()The menu items on the context menu.ObservableList<T>ListView. getItems()Returns anObservableListthat contains the items currently being shown to the user.ObservableList<MenuItem>Menu. getItems()The items to show within this menu.ObservableList<MenuItem>MenuButton. getItems()The items to show within this buttons menu.ObservableList<T>SpinnerValueFactory.ListSpinnerValueFactory. getItems()Returns anObservableListthat contains the items currently able to be iterated through by the user.ObservableList<Node>SplitPane. getItems()Returns an ObservableList which can be use to modify the contents of the SplitPane.ObservableList<S>TableView. getItems()Gets the value of the property items.ObservableList<Node>ToolBar. getItems()The items contained in theToolBar.ObservableList<Menu>MenuBar. getMenus()The menus to show within this MenuBar.ObservableList<TitledPane>Accordion. getPanes()Gets the list ofTitledPanein this Accordion.ObservableList<CharSequence>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.ObservableList<TableColumn<S,?>>TableView. getSortOrder()The sortOrder list defines the order in whichTableColumninstances are sorted.ObservableList<TreeTableColumn<S,?>>TreeTableView. getSortOrder()The sortOrder list defines the order in whichTreeTableColumninstances are sorted.ObservableList<String>PopupControl. getStyleClass()Returns the list of String identifiers that make up the styleClass for this PopupControl.ObservableList<String>Tab. getStyleClass()A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.ObservableList<String>TableColumnBase. getStyleClass()A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.ObservableList<Tab>TabPane. getTabs()The tabs to display in this TabPane.ObservableList<Toggle>ToggleGroup. getToggles()The list of toggles within the ToggleGroup.ObservableList<TableColumn<S,?>>TableView. getVisibleLeafColumns()Returns an unmodifiable list containing the currently visible leaf columns.ObservableList<TreeTableColumn<S,?>>TreeTableView. getVisibleLeafColumns()Returns an unmodifiable list containing the currently visible leaf columns.Methods in javafx.scene.control that return types with arguments of type ObservableList Modifier and Type Method Description ObjectProperty<ObservableList<T>>ChoiceBox. itemsProperty()The items to display in the choice box.ObjectProperty<ObservableList<T>>ComboBox. itemsProperty()The list of items to show within the ComboBox popup.ObjectProperty<ObservableList<T>>ListView. itemsProperty()The underlying data model for the ListView.ObjectProperty<ObservableList<T>>SpinnerValueFactory.ListSpinnerValueFactory. itemsProperty()The underlying data model for the ListView.ObjectProperty<ObservableList<S>>TableView. itemsProperty()The underlying data model for the TableView.Methods in javafx.scene.control with parameters of type ObservableList Modifier and Type Method Description protected voidSkinBase. registerListChangeListener(ObservableList<?> observableList, Consumer<ListChangeListener.Change<?>> operation)Registers an operation to perform when the givenobservableListsends a list change event.voidChoiceBox. setItems(ObservableList<T> value)Sets the value of the property items.voidComboBox. setItems(ObservableList<T> value)Sets the value of the property items.voidListView. setItems(ObservableList<T> value)Sets the underlying data model for the ListView.voidSpinnerValueFactory.ListSpinnerValueFactory. setItems(ObservableList<T> value)Sets the underlying data model for the ListSpinnerValueFactory.voidTableView. setItems(ObservableList<S> value)Sets the value of the property items.protected Consumer<ListChangeListener.Change<?>>SkinBase. unregisterListChangeListeners(ObservableList<?> observableList)Unregisters all operations that have been registered usingSkinBase.registerListChangeListener(ObservableList, Consumer)for the givenobservableList.Constructors in javafx.scene.control with parameters of type ObservableList Constructor Description ChoiceBox(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 providedObservableListvertically.Spinner(ObservableList<T> items)Creates a Spinner instance with thevalue factoryset 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
Methods in javafx.scene.control.cell that return ObservableList Modifier and Type Method Description ObservableList<T>ChoiceBoxListCell. getItems()Returns the items to be displayed in the ChoiceBox when it is showing.ObservableList<T>ChoiceBoxTableCell. getItems()Returns the items to be displayed in the ChoiceBox when it is showing.ObservableList<T>ChoiceBoxTreeCell. getItems()Returns the items to be displayed in the ChoiceBox when it is showing.ObservableList<T>ChoiceBoxTreeTableCell. getItems()Returns the items to be displayed in the ChoiceBox when it is showing.ObservableList<T>ComboBoxListCell. getItems()Returns the items to be displayed in the ChoiceBox when it is showing.ObservableList<T>ComboBoxTableCell. getItems()Returns the items to be displayed in the ComboBox when it is showing.ObservableList<T>ComboBoxTreeCell. getItems()Returns the items to be displayed in the ComboBox when it is showing.ObservableList<T>ComboBoxTreeTableCell. getItems()Returns the items to be displayed in the ComboBox when it is showing.Methods in javafx.scene.control.cell with parameters of type ObservableList Modifier and Type Method Description static <T> Callback<ListView<T>,ListCell<T>>ChoiceBoxListCell. forListView(ObservableList<T> items)Creates a ChoiceBox cell factory for use inListViewcontrols.static <T> Callback<ListView<T>,ListCell<T>>ChoiceBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)Creates a ChoiceBox cell factory for use inListViewcontrols.static <T> Callback<ListView<T>,ListCell<T>>ComboBoxListCell. forListView(ObservableList<T> items)Creates a ComboBox cell factory for use inListViewcontrols.static <T> Callback<ListView<T>,ListCell<T>>ComboBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)Creates a ComboBox cell factory for use inListViewcontrols.static <S, T> Callback<TableColumn<S,T>,TableCell<S,T>>ChoiceBoxTableCell. forTableColumn(ObservableList<T> items)Creates a ChoiceBox cell factory for use inTableColumncontrols.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 inTableColumncontrols.static <S, T> Callback<TableColumn<S,T>,TableCell<S,T>>ComboBoxTableCell. forTableColumn(ObservableList<T> items)Creates a ComboBox cell factory for use inTableColumncontrols.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 inTableColumncontrols.static <S, T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>ChoiceBoxTreeTableCell. forTreeTableColumn(ObservableList<T> items)Creates a ChoiceBox cell factory for use inTreeTableColumncontrols.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 inTreeTableColumncontrols.static <S, T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>ComboBoxTreeTableCell. forTreeTableColumn(ObservableList<T> items)Creates a ComboBox cell factory for use inTreeTableColumncontrols.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 inTreeTableColumncontrols.static <T> Callback<TreeView<T>,TreeCell<T>>ChoiceBoxTreeCell. forTreeView(ObservableList<T> items)Creates a ChoiceBox cell factory for use inTreeViewcontrols.static <T> Callback<TreeView<T>,TreeCell<T>>ChoiceBoxTreeCell. forTreeView(StringConverter<T> converter, ObservableList<T> items)Creates a ChoiceBox cell factory for use inTreeViewcontrols.static <T> Callback<TreeView<T>,TreeCell<T>>ComboBoxTreeCell. forTreeView(ObservableList<T> items)Creates a ComboBox cell factory for use inTreeViewcontrols.static <T> Callback<TreeView<T>,TreeCell<T>>ComboBoxTreeCell. forTreeView(StringConverter<T> converter, ObservableList<T> items)Creates a ComboBox cell factory for use inTreeViewcontrols.Constructors in javafx.scene.control.cell with parameters of type ObservableList Constructor Description ChoiceBoxListCell(ObservableList<T> items)Creates a defaultChoiceBoxListCellinstance with the given items being used to populate theChoiceBoxwhen it is shown.ChoiceBoxListCell(StringConverter<T> converter, ObservableList<T> items)Creates aChoiceBoxListCellinstance with the given items being used to populate theChoiceBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ChoiceBoxTableCell(ObservableList<T> items)Creates a defaultChoiceBoxTableCellinstance with the given items being used to populate theChoiceBoxwhen it is shown.ChoiceBoxTableCell(StringConverter<T> converter, ObservableList<T> items)Creates aChoiceBoxTableCellinstance with the given items being used to populate theChoiceBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ChoiceBoxTreeCell(ObservableList<T> items)Creates a defaultChoiceBoxTreeCellinstance with the given items being used to populate theChoiceBoxwhen it is shown.ChoiceBoxTreeCell(StringConverter<T> converter, ObservableList<T> items)Creates aChoiceBoxTreeCellinstance with the given items being used to populate theChoiceBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ChoiceBoxTreeTableCell(ObservableList<T> items)Creates a defaultChoiceBoxTreeTableCellinstance with the given items being used to populate theChoiceBoxwhen it is shown.ChoiceBoxTreeTableCell(StringConverter<T> converter, ObservableList<T> items)Creates aChoiceBoxTreeTableCellinstance with the given items being used to populate theChoiceBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ComboBoxListCell(ObservableList<T> items)Creates a defaultComboBoxListCellinstance with the given items being used to populate theComboBoxwhen it is shown.ComboBoxListCell(StringConverter<T> converter, ObservableList<T> items)Creates aComboBoxListCellinstance with the given items being used to populate theComboBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ComboBoxTableCell(ObservableList<T> items)Creates a defaultComboBoxTableCellinstance with the given items being used to populate theComboBoxwhen it is shown.ComboBoxTableCell(StringConverter<T> converter, ObservableList<T> items)Creates aComboBoxTableCellinstance with the given items being used to populate theComboBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ComboBoxTreeCell(ObservableList<T> items)Creates a defaultComboBoxTreeCellinstance with the given items being used to populate theComboBoxwhen it is shown.ComboBoxTreeCell(StringConverter<T> converter, ObservableList<T> items)Creates aComboBoxTreeCellinstance with the given items being used to populate theComboBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form.ComboBoxTreeTableCell(ObservableList<T> items)Creates a defaultComboBoxTreeTableCellinstance with the given items being used to populate theComboBoxwhen it is shown.ComboBoxTreeTableCell(StringConverter<T> converter, ObservableList<T> items)Creates aComboBoxTreeTableCellinstance with the given items being used to populate theComboBoxwhen it is shown, and theStringConverterbeing used to convert the item in to a user-readable form. -
Uses of ObservableList in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return ObservableList Modifier and Type Method Description ObservableList<TableColumnHeader>NestedTableColumnHeader. getColumnHeaders()Returns an unmodifiable list of theTableColumnHeaderinstances 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
Methods in javafx.scene.input that return ObservableList Modifier and Type Method Description ObservableList<InputMethodTextRun>InputMethodEvent. getComposed()Gets the text under composition. -
Uses of ObservableList in javafx.scene.layout
Methods in javafx.scene.layout that return ObservableList Modifier and Type Method Description ObservableList<Node>Pane. getChildren()ObservableList<ColumnConstraints>GridPane. getColumnConstraints()Returns list of column constraints.ObservableList<RowConstraints>GridPane. getRowConstraints()Returns list of row constraints. -
Uses of ObservableList in javafx.scene.media
Methods in javafx.scene.media that return ObservableList Modifier and Type Method Description ObservableList<EqualizerBand>AudioEqualizer. getBands()ObservableList containingEqualizerBandelements.ObservableList<Track>Media. getTracks()Retrieve the tracks contained in this media source. -
Uses of ObservableList in javafx.scene.shape
Methods in javafx.scene.shape that return ObservableList Modifier and Type Method Description ObservableList<PathElement>Path. getElements()Gets observable list of path elements of this path.ObservableList<Double>Polygon. getPoints()Gets the coordinates of thePolygonvertices.ObservableList<Double>Polyline. getPoints()Gets the coordinates of thePolyLinesegments.ObservableList<Double>Shape. getStrokeDashArray()Defines the array representing the lengths of the dash segments. -
Uses of ObservableList in javafx.scene.web
Methods in javafx.scene.web that return ObservableList Modifier and Type Method Description ObservableList<WebHistory.Entry>WebHistory. getEntries()Returns an unmodifiable observable list of all entries in the history. -
Uses of ObservableList in javafx.stage
Methods in javafx.stage that return ObservableList Modifier and Type Method Description ObservableList<Node>Popup. getContent()The ObservableList ofNodes to be rendered on thisPopup.ObservableList<FileChooser.ExtensionFilter>FileChooser. getExtensionFilters()Gets the extension filters used in the displayed file dialog.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 ofScreensthat intersects the provided rectangle.static ObservableList<Screen>Screen. getScreensForRectangle(Rectangle2D r)Returns a ObservableList ofScreensthat intersects the provided rectangle.static ObservableList<Window>Window. getWindows()Returns a list containing a reference to the currently showing JavaFX windows.