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