Package de.ufinke.cubaja.util
Enum Weekday
- java.lang.Object
-
- java.lang.Enum<Weekday>
-
- de.ufinke.cubaja.util.Weekday
-
- All Implemented Interfaces:
Serializable
,Comparable<Weekday>
public enum Weekday extends Enum<Weekday>
Weekday definitions.- Author:
- Uwe Finke
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCalendarConstant()
Returns the correspondingCalendar
constant.static Weekday
getWeekday(Calendar cal)
Returns a weekday corresponding to a calendar value.static Weekday
getWeekday(Date date)
Returns the weekday of a date.String
toString()
Returns the weekday name.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 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
-
getCalendarConstant
public int getCalendarConstant()
Returns the correspondingCalendar
constant.- Returns:
- constant
-
toString
public String toString()
Returns the weekday name. The name is localized according to resource bundle entries.
-
getWeekday
public static Weekday getWeekday(Date date)
Returns the weekday of a date.- Parameters:
date
- date- Returns:
- weekday
-
-