Utilizzando Javadoc 1.5, non sono stato in grado di creare un collegamento @ a un valore di enumerazione.
Quello che vorrei fare è creare un Enum come questo:
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
}
Quindi fai riferimento a Javadoc per la Terra usando un collegamento come questo:
{@link Planet.EARTH}
Ho provato anche lo {@link Planet#EARTH}
stile, ma senza successo .
Qualcuno sa se questo è fattibile?