mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
14 lines
222 B
Java
14 lines
222 B
Java
enum TestEnum {
|
|
ONE(Constants1.xxx);
|
|
|
|
TestEnum(String str) {
|
|
}
|
|
|
|
private static class Constants1 {
|
|
public static final String xxx = "testString";
|
|
}
|
|
|
|
private class Constants {
|
|
void foo(){}
|
|
}
|
|
} |