我怎样才能引用javadoc类中的最终静态字段的值?

/** * This is a simple class with only one static field with the value ???. */ public class Simple { /** * We can reference the value with {@value} here, * but how do we reference it in the class JavaDoc? */ public static final String STATIC_FIELD = "simple static field"; } 

代码说明了这一切:-)提前感谢您的帮助!

编辑:我真正想要的是“???” 上面的值被STATIC_FIELD字段的值replace。 一个链接不会是完美的,但总比没有好:-)

你的意思是{@value #STATIC_FIELD}