public enum TipoPoder {
  | 
  |     M("MANCOMUNADO"), S("SOLIDARIO");
  | 
  |    private String label;
  |    TipoPoder(String label){
  |       this.label = label;
  |    }
  |    public String getLabel(){
  |       return label;
  |    }
  | }

@Enumerated(STRING) TipoPoder tipoPoder;

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059083#4059083

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059083
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to