Example usage for Java javafx.collections FXCollections fields, constructors, methods, implement or subclass
The text is from its open source code.
ObservableList | emptyObservableList() Creates an empty unmodifiable observable list. |
ObservableList | observableArrayList(Callback Creates a new empty observable list backed by an arraylist. |
ObservableList | observableArrayList(E... items) Creates a new observable array list with items added to it. |
ObservableList | observableArrayList(Collection extends E> col) Creates a new observable array list and adds a content of collection col to it. |
ObservableList | observableArrayList() Creates a new empty observable list that is backed by an arraylist. |
ObservableMap | observableHashMap() Creates a new empty observable map that is backed by a HashMap. |
ObservableList | observableList(List Constructs an ObservableList that is backed by the specified list. |
ObservableMap | observableMap(Map Constructs an ObservableMap that is backed by the specified map. |
ObservableList | singletonObservableList(E e) Creates an unmodifiable observable list with single element. |
void | sort(ObservableList Sorts the provided observable list using the c comparator. |