public static enum Utils.FrequencyType extends Enum<Utils.FrequencyType>
Enum Constant and Description |
---|
perDay |
perHour |
perMinute |
perMonth |
perWeek |
perYear |
Modifier and Type | Method and Description |
---|---|
static Utils.FrequencyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Utils.FrequencyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Utils.FrequencyType perMinute
public static final Utils.FrequencyType perHour
public static final Utils.FrequencyType perDay
public static final Utils.FrequencyType perWeek
public static final Utils.FrequencyType perMonth
public static final Utils.FrequencyType perYear
public static Utils.FrequencyType[] values()
for (Utils.FrequencyType c : Utils.FrequencyType.values()) System.out.println(c);
public static Utils.FrequencyType 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 © 2018. All Rights Reserved.