mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 21:09:47 +07:00
GitOrigin-RevId: 3a473c492e709a280d8a06e7364a2af05babf37f
9 lines
161 B
Java
9 lines
161 B
Java
// "Create constructor" "true-preview"
|
|
public enum ReportType {
|
|
AGING("Aging"),
|
|
;
|
|
|
|
ReportType(String aging) {
|
|
<selection></selection>
|
|
}
|
|
} |