In Java, constants are identified with the key word final. A variable tagged as final can never change after it has been set. If you try to change the value of a final variable, the compiler will report an error and your program will not compile.
Consider the following links:
n) or next to Convention
x) or out to More on constants
Links:
Convention
More on Constants