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 this case, you can mark the field as 'static' also.