NonFinalStaticField
Static fields should almost always be final.

Severity
WARNING

The problem

static fields should almost always be both final and deeply immutable.

Instead of:

private static String FOO = "foo";

Prefer:

private static final String FOO = "foo";

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("NonFinalStaticField") to the enclosing element.