从枚举中填充JavaFX ComboBox或ChoiceBox

时间:2015-01-06 14:49:07

标签: java combobox enums javafx

有没有办法用枚举的所有枚举填充JavaFX ComboBoxChoiceBox

以下是我的尝试:

public class Test {

    public enum Status {
        ENABLED("enabled"),
        DISABLED("disabled"),
        UNDEFINED("undefined");

        private String label;

        Status(String label) {
            this.label = label;
        }

        public String toString() {
            return label;
        }
    }
}

在另一个课程中,我正在尝试填充ComboBox

    ComboBox<Test.Status> cbxStatus = new ComboBox<>();
    cbxStatus.setItems(Test.Status.values());

但我收到错误:incompatible types: Status[] cannot be converted to ObservableList<Status>

我显然遇到ChoiceBox的问题。

2 个答案:

答案 0 :(得分:20)

如果setItems需要一个ObservableList,那么你必须给它一个而不是一个数组。

试试这个:

ComboBox<Status> cbxStatus = new ComboBox<>();
cbxStatus.setItems( FXCollections.observableArrayList( Status.values()));

编辑:James_D的解决方案(见评论)是首选的解决方案:

cbxStatus.getItems().setAll(Status.values());

答案 1 :(得分:2)

我使用了FXML。我的枚举有一个构造函数

<ComboBox GridPane.rowIndex="0" GridPane.columnIndex="1">
        <items>
            <FXCollections fx:factory="observableArrayList">
                <Type fx:value="ABC"/>
                <Type fx:value="DEF"/>
                <Type fx:value="GHI"/>
            </FXCollections>
        </items>
    </ComboBox>
public enum Type {

    ABC("abc"),DEF("def"),GHI("ghi");

    private String name;

    private Type(String theType) {
        this.name = theType;
    }

}