Naming convention: Final fields (not static)
- by Zeeker
Today I had a discussion with a co-worker about the naming of final fields in Java classes.
In his opionion final fields should also be considered constants since their values won't change after the creation of the instance.
This would lead to the following naming convention for final fields:
public class Foo {
private static final String…