Simon
Simon

Reputation: 4192

How can I reference the value of a final static field in the class?

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";

}

Upvotes: 129

Views: 62187

Answers (1)

user207421
user207421

Reputation: 310883

Do you mean {@value #STATIC_FIELD}?

Upvotes: 252

Related Questions