mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
11 lines
203 B
Java
11 lines
203 B
Java
enum TestEnum {
|
|
ONE(Constants.xxx);
|
|
|
|
TestEnum(String str) {
|
|
}
|
|
|
|
private static class Constants {
|
|
public static final String FOO = "";
|
|
public static final String xxx = "testString";
|
|
}
|
|
} |