mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-28 12:52:51 +07:00
10 lines
161 B
Java
10 lines
161 B
Java
enum TestEnum {
|
|
ONE(Constants.xxx);
|
|
|
|
TestEnum(String str) {
|
|
}
|
|
|
|
private class Constants {
|
|
public static final String xxx = "testString";
|
|
}
|
|
} |