org.eobjects.metamodel.util
Enum Weekday
java.lang.Object
java.lang.Enum<Weekday>
org.eobjects.metamodel.util.Weekday
- All Implemented Interfaces:
- Serializable, Comparable<Weekday>, HasName
public enum Weekday
- extends Enum<Weekday>
- implements HasName
Provides a handy and type-safe enum around the weekdays otherwise defined as
int constants in java.util.Calendar.
- Author:
- Kasper Sørensen
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 Weekday[] 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 (Weekday c : Weekday.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are 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
NullPointerException - if the argument is null
getCalendarConstant
public int getCalendarConstant()
getByCalendarConstant
public static Weekday getByCalendarConstant(int calendarConstant)
next
public Weekday next()
previous
public Weekday previous()
getName
public String getName()
- Specified by:
getName in interface HasName
Copyright © 2007-2013. All Rights Reserved.