How to javadoc enum values
Did some search but did not found an answer on how to javadoc enum values. For example if I want to describe the values 'first' and 'second'?
/**
* Some enumeration
*/
public enum Enumm {first, second};
Should it be done like this?:
/**
* Some enumeration
*/
public enum Enumm {first /**Desc for first*/, second /**Desc for second*/};

