org.jtools.util
Enum Weekday
java.lang.Object
java.lang.Enum<Weekday>
org.jtools.util.Weekday
- All Implemented Interfaces:
- Serializable, Comparable<Weekday>
public enum Weekday
- extends Enum<Weekday>
TODO type-description
- Author:
- Rainer Noack
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. |
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
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
© 2000-2006, JTools.org.