class Test { private static final int FIELD = 5; /** * Prints the value of {@link Test#FIELD} */ void test() { System.out.println(FIELD); } }