Can anyone shed some light on how can one define an array of enumerated types? I need to
map the following class:
| public class Proto {
| public enum TransportMethod {HTTP, HTTPS, TELNET, SSH};
|
|
| private Set<TransportMethod> methods = new
HashSet<TransportMethod>(0);
| ...getters and setters....
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120683#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...