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.
You do it just like any other variable you would javadoc.
EDIT:
From Paŭlo Ebermann : The enum is a separate class. You can't include its full documentation in the enclosing class (at least, without patching the standard doclet).
You can create link to each enum's item. All items will be listed in javadocs to enum class.