mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: daaf348e0b0905a4cc200d5816a7e0310246eef8
12 lines
177 B
Java
12 lines
177 B
Java
public enum EEnum {
|
|
FOO(0);
|
|
private final int value;
|
|
|
|
EEnum(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public int getValue() {
|
|
return value;
|
|
}
|
|
} |