web-dev-qa-db-ja.com

クラスの最終的な静的フィールドの値を参照するにはどうすればよいですか?

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

}
82
Simon

という意味ですか{@value #STATIC_FIELD}

161
user207421