Lets say I have got such code:
private static final int[] ARRAY = {5, 10, 15};
/**
* ????
*/
public void doSomething()
{}
I am wondering, if is there any way to put value of the ARRAY into documentation of doSomething() method.
I can see that @value #ARRAY isn't working at all for arrays :(
@link #ARRAY is not showing me the value.
Am I missing something?
enum Planetexample: docs.oracle.com/javase/tutorial/java/javaOO/enum.html