mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
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;
|
|
} |