Yes. That is it. It is often used for enum as well.
The only common exception is for logging where you might see
private static final Logger log = Logger.getLogger(getClass().getName());
but I prefer LOG
I often write this as UPPER_CASE, but I also write TitleCase for classes and camelCase for variables and methods.