Package org.cyclos.utils
Enum WeekDay
- java.lang.Object
-
- java.lang.Enum<WeekDay>
-
- org.cyclos.utils.WeekDay
-
- All Implemented Interfaces:
Serializable,Comparable<WeekDay>,HasMessageKey
public enum WeekDay extends Enum<WeekDay> implements HasMessageKey
The week days
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WeekDayfromCalendar(int weekDay)Returns aWeekDayfrom the Calendar representation of week days: sunday = 1 ..MessageKeygetMessageKey()static EnumMessageKeyResolver<WeekDay>resolverForShort()Returns anEnumMessageKeyResolverto translate a week day into the short formstatic WeekDayvalueOf(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 are declared.
-
-
-
Enum Constant Detail
-
SUNDAY
public static final WeekDay SUNDAY
-
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
-
-
Method Detail
-
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 nameNullPointerException- if the argument is null
-
fromCalendar
public static WeekDay fromCalendar(int weekDay)
Returns aWeekDayfrom the Calendar representation of week days: sunday = 1 .. saturday = 7
-
resolverForShort
public static EnumMessageKeyResolver<WeekDay> resolverForShort()
Returns anEnumMessageKeyResolverto translate a week day into the short form
-
getMessageKey
public MessageKey getMessageKey()
- Specified by:
getMessageKeyin interfaceHasMessageKey
-
-