JTools

org.jtools.util
Enum Weekday

java.lang.Object
  extended by java.lang.Enum<Weekday>
      extended by org.jtools.util.Weekday
All Implemented Interfaces:
Serializable, Comparable<Weekday>

public enum Weekday
extends Enum<Weekday>

TODO type-description

Author:
Rainer Noack

Enum Constant Summary
FRIDAY
           
MONDAY
           
SATURDAY
           
SUNDAY
           
THURSDAY
           
TUESDAY
           
WEDNESDAY
           
 
Method Summary
static Weekday valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Weekday[] 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

MONDAY

public static final Weekday MONDAY

TUESDAY

public static final Weekday TUESDAY

WEDNESDAY

public static final Weekday WEDNESDAY

THURSDAY

public static final Weekday THURSDAY

FRIDAY

public static final Weekday FRIDAY

SATURDAY

public static final Weekday SATURDAY

SUNDAY

public static final Weekday SUNDAY
Method Detail

values

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

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

valueOf

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

JTools

© 2000-2006, JTools.org.