...
DCL04-EX2: Constants declared using the enum
type may are permitted to violate this guideline.
DCL04-EX3: Constants that never change their values whose value never changes throughout the entire lifetime of the software may indeed be declared as final. For instance, the JLS recommends that mathematical constants be declared final.
...