I am writing javadoc for a class containing its own enumerations. Is there a way to generate javadoc for individual enums? For example, right now I have something like this:
private static enum HairColor { BLACK, BLONDE, BROWN, OTHER, RED };
However, this only documents all the listings in general:

Is there any way to document each of the HairColor values โโseparately? Without moving enum to its own class or changing it from an enumeration?
Thanks in advance for your help.
java enums javadoc
Rachel G. Jul 01 2018-11-11T00: 00Z
source share