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*/};

[399 byte] By [Betaa] at [2007-10-3 5:29:43]
# 1

> Should it be done like this?:

>

>/**

> * Some enumeration

>*/

> public enum Enumm {first /**Desc for first*/, second

> /**Desc for second*/};

Close, but no cigar.

It's a little more like this:

public enum EquipSlotType {

/** A type of ornamental jewellery around a finger. */ RING;

}

bounceWiggleBouncea at 2007-7-14 23:37:09 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...