Is there a way to populate a JavaFX ComboBox or ChoiceBox with all enumerations of a enum ?
Here is what I tried :
public c
If setItems requires an ObservableList, then you have to give it one instead of an array.
Try this:
ComboBox cbxStatus = new ComboBox<>();
cbxStatus.setItems( FXCollections.observableArrayList( Status.values()));
Edit: The solution of James_D (see comment) is the preferred one:
cbxStatus.getItems().setAll(Status.values());