public enum TimePeriod extends Enum<TimePeriod>
| Enum Constant and Description | 
|---|
ZS_AllTime  | 
ZS_Monthly  | 
ZS_Weekly  | 
| Modifier and Type | Method and Description | 
|---|---|
static TimePeriod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TimePeriod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TimePeriod ZS_AllTime
public static final TimePeriod ZS_Weekly
public static final TimePeriod ZS_Monthly
public static TimePeriod[] values()
for (TimePeriod c : TimePeriod.values()) System.out.println(c);
public static TimePeriod 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