使用 Javadoc 1.5,我无法创建指向枚举值的@链接。
我想要做的是创建一个像这样的 Enum:
public enum Planet {
/**
* MERCURY is a fun place.
*/
MERCURY,
/**
* VENUS is more fun.
*/
VENUS,
/**
* But nothing beats the Earth.
*/
EARTH,
/**
* Others we know nothing about.
*/
OTHERS
}
然后参考地球的 Javadoc 使用如下链接:
{@link Planet.EARTH}
我也试过 {@link Planet#EARTH}
风格,但没有用。
有人知道这是否可行吗?