class Test { public static final String CONST = "foo bar"; private void test() { String s = CONST; System.out.println(s); } }