I have a java program with hundreds of configuration constants:
public static final String C1=\"C1\"; public static final String C2=\"C2\";
Sin
You should static import. More details are here http://javapapers.com/core-java/what-is-a-static-import-in-java/
You have it like : import static mynamespace.MyClassConstants.*;
import static mynamespace.MyClassConstants.*;