Enum QualifiedDayOfWeek.DayOfWeek
- java.lang.Object
-
- java.lang.Enum<QualifiedDayOfWeek.DayOfWeek>
-
- org.pentaho.platform.scheduler2.recur.QualifiedDayOfWeek.DayOfWeek
-
- All Implemented Interfaces:
Serializable
,Comparable<QualifiedDayOfWeek.DayOfWeek>
- Enclosing class:
- QualifiedDayOfWeek
public static enum QualifiedDayOfWeek.DayOfWeek extends Enum<QualifiedDayOfWeek.DayOfWeek>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QualifiedDayOfWeek.DayOfWeek
valueOf(String name)
Returns the enum constant of this type with the specified name.static QualifiedDayOfWeek.DayOfWeek[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUN
public static final QualifiedDayOfWeek.DayOfWeek SUN
-
MON
public static final QualifiedDayOfWeek.DayOfWeek MON
-
TUE
public static final QualifiedDayOfWeek.DayOfWeek TUE
-
WED
public static final QualifiedDayOfWeek.DayOfWeek WED
-
THU
public static final QualifiedDayOfWeek.DayOfWeek THU
-
FRI
public static final QualifiedDayOfWeek.DayOfWeek FRI
-
SAT
public static final QualifiedDayOfWeek.DayOfWeek SAT
-
-
Method Detail
-
values
public static QualifiedDayOfWeek.DayOfWeek[] 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 (QualifiedDayOfWeek.DayOfWeek c : QualifiedDayOfWeek.DayOfWeek.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QualifiedDayOfWeek.DayOfWeek 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
-
-