| Enum Constant and Description |
|---|
DAILY |
HOURLY |
MINUTELY |
MONTHLY |
SECONDLY |
WEEKLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static Freq |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Freq[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Freq YEARLY
public static final Freq MONTHLY
public static final Freq WEEKLY
public static final Freq DAILY
public static final Freq HOURLY
public static final Freq MINUTELY
public static final Freq SECONDLY
public static Freq[] values()
for (Freq c : Freq.values()) System.out.println(c);
public static Freq valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null