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";