public enum ReportPeriod extends Enum<ReportPeriod>
Enum Constant and Description |
---|
MONTH
Month
|
QUARTER
Quarter
|
WEEK
Week
|
YEAR
Year
|
Modifier and Type | Method and Description |
---|---|
static ReportPeriod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportPeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportPeriod WEEK
public static final ReportPeriod MONTH
public static final ReportPeriod QUARTER
public static final ReportPeriod YEAR
public static ReportPeriod[] values()
for (ReportPeriod c : ReportPeriod.values()) System.out.println(c);
public static ReportPeriod 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 © 2019. All rights reserved.