public static enum ChartFactory.PeriodName extends Enum<ChartFactory.PeriodName>
Enum Constant and Description |
---|
daily |
hourly |
monthly |
quarterly |
weekly |
yearly |
Modifier and Type | Method and Description |
---|---|
static ChartFactory.PeriodName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartFactory.PeriodName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartFactory.PeriodName hourly
public static final ChartFactory.PeriodName daily
public static final ChartFactory.PeriodName weekly
public static final ChartFactory.PeriodName monthly
public static final ChartFactory.PeriodName quarterly
public static final ChartFactory.PeriodName yearly
public static ChartFactory.PeriodName[] values()
for (ChartFactory.PeriodName c : ChartFactory.PeriodName.values()) System.out.println(c);
public static ChartFactory.PeriodName 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 © 2002-2021 Atlassian. All Rights Reserved.