mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 17:09:38 +07:00
IDEA-218658 GitOrigin-RevId: f40a346285633828feea3a1b08513e50413aab61
11 lines
143 B
Java
11 lines
143 B
Java
enum E {
|
|
A("one", 1);
|
|
|
|
E(String s, int num) {
|
|
this.s = s;
|
|
this.num = num;
|
|
}
|
|
|
|
private final String s;
|
|
private final int num;
|
|
} |