static fields should almost always be both final and deeply immutable.
static
final
Instead of:
private static String FOO = "foo";
Prefer:
private static final String FOO = "foo";