জাভাডক ব্যবহার করে, আমি কীভাবে ক্লাসে একটি চূড়ান্ত স্ট্যাটিক ক্ষেত্রের মান উল্লেখ করতে পারি?
আমি ???
এই উদাহরণটি ক্ষেত্রের মান দ্বারা প্রতিস্থাপন করতে চাই 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";
}