Populating JavaFX ComboBox or ChoiceBox from enum

后端 未结 2 493
余生分开走
余生分开走 2020-12-16 12:04

Is there a way to populate a JavaFX ComboBox or ChoiceBox with all enumerations of a enum ?

Here is what I tried :

public c         


        
2条回答
  •  鱼传尺愫
    2020-12-16 12:26

    I used FXML for this. My enum has a constructor

    
            
                
                    
                    
                    
                
            
        
    

    public enum Type {
    
        ABC("abc"),DEF("def"),GHI("ghi");
    
        private String name;
    
        private Type(String theType) {
            this.name = theType;
        }
    
    }
    

提交回复
热议问题