JavaDocを使用して、クラスの最後の静的フィールドの値をどのように参照できますか?
私が欲しい???
、この例では、フィールドの値に置き換えSTATIC_FIELD
。
/**
* 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";
}