Reputation: 23322
I have a java program with hundreds of configuration constants:
public static final String C1="C1";
public static final String C2="C2";
Since there are so many of them, I've put them into a separate class, MyClassConstants
.
Now, I need to use them on MyClass
:
import mynamespace.MyClassConstants;
myMethod( MyClassConstants.C1, MyClassConstants.C2 );
This gets very verbose very fast, so I was wondering if it was possible to somehow import the fields directly:
import mynamespace.MyClassConstants.*;
myMethod( C1, C2 ); //doesn't work
Or at the very least, rename the import:
import mynamespace.MyClassConstants as C; //javac hates me
myMethod( C.C1, C.C2 );
But it seems this later approach is impossible
Is there a way to do this and still have a meaningful class name for the constants? Or should I use another approach?
Upvotes: 3
Views: 1286
Reputation: 4189
The answer is Static import
, you can solve by using it:
import static mynamespace.MyClassConstants.*;
See also:
Upvotes: 6
Reputation: 5531
try
import static mynamespace.MyClassConstants.*;
then
myMethod( C1, C2 ); should work
Upvotes: 6
Reputation: 7940
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.*;
Upvotes: 3