public static enum ReportGenerator.Type extends Enum<ReportGenerator.Type>
Enum Constant and Description |
---|
BY_DAY_REPORT |
BY_MONTH_REPORT |
BY_PROJECT_REPORT |
BY_WEEK_REPORT |
BY_YEAR_REPORT |
Modifier and Type | Method and Description |
---|---|
static ReportGenerator.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportGenerator.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportGenerator.Type BY_DAY_REPORT
public static final ReportGenerator.Type BY_WEEK_REPORT
public static final ReportGenerator.Type BY_MONTH_REPORT
public static final ReportGenerator.Type BY_YEAR_REPORT
public static final ReportGenerator.Type BY_PROJECT_REPORT
public static ReportGenerator.Type[] values()
for (ReportGenerator.Type c : ReportGenerator.Type.values()) System.out.println(c);
public static ReportGenerator.Type 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 nullCopyright © 2007–2013 CodeLutin. All rights reserved.