scheduler.view
Enum DaysInWeek.Day

java.lang.Object
  extended by java.lang.Enum<DaysInWeek.Day>
      extended by scheduler.view.DaysInWeek.Day
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DaysInWeek.Day>
Enclosing class:
DaysInWeek

public static enum DaysInWeek.Day
extends java.lang.Enum<DaysInWeek.Day>

Day specifiees a day (MON - SUN)


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

Enum Constant Detail

MON

public static final DaysInWeek.Day MON

TUE

public static final DaysInWeek.Day TUE

WED

public static final DaysInWeek.Day WED

THU

public static final DaysInWeek.Day THU

FRI

public static final DaysInWeek.Day FRI

SAT

public static final DaysInWeek.Day SAT

SUN

public static final DaysInWeek.Day SUN
Method Detail

values

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

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

valueOf

public static DaysInWeek.Day 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
java.lang.NullPointerException - if the argument is null