Files
2022-10-31 13:46:49 +00:00

8 lines
155 B
Java

// "Create constructor" "true-preview"
public enum ReportType {
AGING("Aging");
ReportType(String aging) {
<selection></selection>
}
}