mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
13 lines
210 B
Java
13 lines
210 B
Java
// "Create getter for '_i'" "true-preview"
|
|
public enum TestEnum {
|
|
;
|
|
private final int _i;
|
|
|
|
private TestEnum(int _i) {
|
|
this._i = _i;
|
|
}
|
|
|
|
public int get_i() {
|
|
return _i;
|
|
}
|
|
} |