Is there a solution to use a final variable in a Java constructor? The problem is that if I initialize a final field like:
private final String name = \"a na
In that case, you might as well make it static, too. And Java convention is to name such constants in ALL_CAPS.