Java javafx.collections FXCollections fields, constructors, methods, implement or subclass

Example usage for Java javafx.collections FXCollections fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.collections FXCollections.

The text is from its open source code.

Method

ObservableListemptyObservableList()
Creates an empty unmodifiable observable list.
ObservableListobservableArrayList(Callback extractor)
Creates a new empty observable list backed by an arraylist.
ObservableListobservableArrayList(E... items)
Creates a new observable array list with items added to it.
ObservableListobservableArrayList(Collection col)
Creates a new observable array list and adds a content of collection col to it.
ObservableListobservableArrayList()
Creates a new empty observable list that is backed by an arraylist.
ObservableMapobservableHashMap()
Creates a new empty observable map that is backed by a HashMap.
ObservableListobservableList(List list)
Constructs an ObservableList that is backed by the specified list.
ObservableMapobservableMap(Map map)
Constructs an ObservableMap that is backed by the specified map.
ObservableListsingletonObservableList(E e)
Creates an unmodifiable observable list with single element.
voidsort(ObservableList list, Comparator c)
Sorts the provided observable list using the c comparator.