That is pleasant, seemingly even the standard.
(public/private) static final TYPE NAME = VALUE;
where TYPE is the model, NAME is the title in all caps with underscores for spaces, and VALUE is the fixed value;
I extremely suggest NOT placing your constants in their classes or interfaces.
As a bottom note: Variables that are published final and are uncertain can still be improved; yet, the variable can never point at a distinctive object.
For example:
public static final Point ORIGIN = new Point(0,0);
public static void main(String[] args){
ORIGIN.x = 3;
}
That is fair and ORIGIN would later be a point at (3, 0).