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

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

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


Enum Constant Summary
SCHEDULE_WEEK_FIRST
           
SCHEDULE_WEEK_FOURTH
           
SCHEDULE_WEEK_SECOND
           
SCHEDULE_WEEK_THIRD
           
 
Method Summary
static ScheduleFrequencyWeek valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScheduleFrequencyWeek[] 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_WEEK_FIRST

public static final ScheduleFrequencyWeek SCHEDULE_WEEK_FIRST

SCHEDULE_WEEK_SECOND

public static final ScheduleFrequencyWeek SCHEDULE_WEEK_SECOND

SCHEDULE_WEEK_THIRD

public static final ScheduleFrequencyWeek SCHEDULE_WEEK_THIRD

SCHEDULE_WEEK_FOURTH

public static final ScheduleFrequencyWeek SCHEDULE_WEEK_FOURTH
Method Detail

values

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

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

valueOf

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