问题
Using JavaDoc, how can I reference the value of a final static field in the class?
I want the ???
in this example replaced by the value of the field 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";
}
回答1:
Do you mean {@value #STATIC_FIELD}
?
来源:https://stackoverflow.com/questions/7868991/how-can-i-reference-the-value-of-a-final-static-field-in-the-class