org.pentaho.platform.scheduler2.recur
Enum QualifiedDayOfWeek.DayOfWeek

java.lang.Object
  extended by java.lang.Enum<QualifiedDayOfWeek.DayOfWeek>
      extended by org.pentaho.platform.scheduler2.recur.QualifiedDayOfWeek.DayOfWeek
All Implemented Interfaces:
Serializable, Comparable<QualifiedDayOfWeek.DayOfWeek>
Enclosing class:
QualifiedDayOfWeek

public static enum QualifiedDayOfWeek.DayOfWeek
extends Enum<QualifiedDayOfWeek.DayOfWeek>


Enum Constant Summary
FRI
           
MON
           
SAT
           
SUN
           
THU
           
TUE
           
WED
           
 
Method Summary
static QualifiedDayOfWeek.DayOfWeek valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QualifiedDayOfWeek.DayOfWeek[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUN

public static final QualifiedDayOfWeek.DayOfWeek SUN

MON

public static final QualifiedDayOfWeek.DayOfWeek MON

TUE

public static final QualifiedDayOfWeek.DayOfWeek TUE

WED

public static final QualifiedDayOfWeek.DayOfWeek WED

THU

public static final QualifiedDayOfWeek.DayOfWeek THU

FRI

public static final QualifiedDayOfWeek.DayOfWeek FRI

SAT

public static final QualifiedDayOfWeek.DayOfWeek SAT
Method Detail

values

public static QualifiedDayOfWeek.DayOfWeek[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (QualifiedDayOfWeek.DayOfWeek c : QualifiedDayOfWeek.DayOfWeek.values())
    System.out.println(c);

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

valueOf

public static QualifiedDayOfWeek.DayOfWeek valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null