I am writing the javadoc for a class that contains it's own enums. Is there a way to generate javadoc for the individual enums? For example, right now I have something like this:
/**
* This documents "HairColor"
*/
private static enum HairColor { BLACK, BLONDE, BROWN, OTHER, RED };
However, this only documents all of the enums as a whole:

Is there any way to document each of the HairColor values individually? Without moving the enum into it's own class or changing it from an enum?
Thanks in advance for any help.
privatenested enum, so users of your class can't use the enum or its values anyway. And if it is meant to be public and standalone than what's the big deal in documenting it as its own unit? – Mark Peters Jul 1 '11 at 15:33