org.homeunix.thecave.buddi.i18n.keys
Enum ScheduleFrequencyFirstWeekOfMonth

java.lang.Object
  extended by java.lang.Enum<ScheduleFrequencyFirstWeekOfMonth>
      extended by org.homeunix.thecave.buddi.i18n.keys.ScheduleFrequencyFirstWeekOfMonth
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ScheduleFrequencyFirstWeekOfMonth>

public enum ScheduleFrequencyFirstWeekOfMonth
extends java.lang.Enum<ScheduleFrequencyFirstWeekOfMonth>


Enum Constant Summary
SCHEDULE_DAY_FIRST_FRIDAY
           
SCHEDULE_DAY_FIRST_MONDAY
           
SCHEDULE_DAY_FIRST_SATURDAY
           
SCHEDULE_DAY_FIRST_SUNDAY
           
SCHEDULE_DAY_FIRST_THURSDAY
           
SCHEDULE_DAY_FIRST_TUESDAY
           
SCHEDULE_DAY_FIRST_WEDNESDAY
           
 
Method Summary
static ScheduleFrequencyFirstWeekOfMonth valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScheduleFrequencyFirstWeekOfMonth[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
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
 

Enum Constant Detail

SCHEDULE_DAY_FIRST_SUNDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_SUNDAY

SCHEDULE_DAY_FIRST_MONDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_MONDAY

SCHEDULE_DAY_FIRST_TUESDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_TUESDAY

SCHEDULE_DAY_FIRST_WEDNESDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_WEDNESDAY

SCHEDULE_DAY_FIRST_THURSDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_THURSDAY

SCHEDULE_DAY_FIRST_FRIDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_FRIDAY

SCHEDULE_DAY_FIRST_SATURDAY

public static final ScheduleFrequencyFirstWeekOfMonth SCHEDULE_DAY_FIRST_SATURDAY
Method Detail

values

public static final ScheduleFrequencyFirstWeekOfMonth[] 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(ScheduleFrequencyFirstWeekOfMonth c : ScheduleFrequencyFirstWeekOfMonth.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ScheduleFrequencyFirstWeekOfMonth 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