public static enum ReportPrintJob.ReportType extends Enum<ReportPrintJob.ReportType>
Enum Constant and Description |
---|
DISCOUNTS |
EMPLOYEES |
ITEMS |
ITEMS_2019 |
PAYMENTS |
SALES_OVERVIEW |
SHIFTS |
TAXES |
Modifier and Type | Method and Description |
---|---|
static ReportPrintJob.ReportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportPrintJob.ReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportPrintJob.ReportType PAYMENTS
public static final ReportPrintJob.ReportType ITEMS
public static final ReportPrintJob.ReportType DISCOUNTS
public static final ReportPrintJob.ReportType TAXES
public static final ReportPrintJob.ReportType SHIFTS
public static final ReportPrintJob.ReportType EMPLOYEES
public static final ReportPrintJob.ReportType SALES_OVERVIEW
public static final ReportPrintJob.ReportType ITEMS_2019
public static ReportPrintJob.ReportType[] values()
for (ReportPrintJob.ReportType c : ReportPrintJob.ReportType.values()) System.out.println(c);
public static ReportPrintJob.ReportType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null