如何使用 Javadoc 将枚举值@link
使用Javadoc 1.5,我无法创建枚举值@link。
我想做的是创建一个像这样的枚举:
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}
有谁知道这是否可行?