I have a java program with hundreds of configuration constants:
public static final String C1=\"C1\"; public static final String C2=\"C2\";
Sin
The answer is Static import, you can solve by using it:
Static import
import static mynamespace.MyClassConstants.*;
See also: