使用Javadoc 1.5,我无法创建指向Enumeration值的@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
}
然后使用类似这样的链接引用Earth的Javadoc:
{@link Planet.EARTH}
我也尝试过这种{@link Planet#EARTH}
风格,但无济于事。
有人知道这是否可行吗?