org.homeunix.thecave.buddi.i18n.keys
Enum ScheduleFrequencyDayOfWeek
java.lang.Object
java.lang.Enum<ScheduleFrequencyDayOfWeek>
org.homeunix.thecave.buddi.i18n.keys.ScheduleFrequencyDayOfWeek
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ScheduleFrequencyDayOfWeek>
public enum ScheduleFrequencyDayOfWeek
- extends java.lang.Enum<ScheduleFrequencyDayOfWeek>
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
SCHEDULE_DAY_SUNDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_SUNDAY
SCHEDULE_DAY_MONDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_MONDAY
SCHEDULE_DAY_TUESDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_TUESDAY
SCHEDULE_DAY_WEDNESDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_WEDNESDAY
SCHEDULE_DAY_THURSDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_THURSDAY
SCHEDULE_DAY_FRIDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_FRIDAY
SCHEDULE_DAY_SATURDAY
public static final ScheduleFrequencyDayOfWeek SCHEDULE_DAY_SATURDAY
values
public static final ScheduleFrequencyDayOfWeek[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ScheduleFrequencyDayOfWeek c : ScheduleFrequencyDayOfWeek.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ScheduleFrequencyDayOfWeek valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name