|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<TimeConstants.DayOfWeek>
com.prozima.time.TimeConstants.DayOfWeek
public static enum TimeConstants.DayOfWeek
Enum defining the possible days of the week.
| Enum Constant Summary | |
|---|---|
FRIDAY
Friday. |
|
MONDAY
Monday. |
|
SATURDAY
Saturday. |
|
SUNDAY
Sunday. |
|
THURSDAY
Thursday. |
|
TUESDAY
Tuesday. |
|
WEDNESDAY
Wednesday. |
|
| Method Summary | |
|---|---|
static TimeConstants.DayOfWeek |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TimeConstants.DayOfWeek[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TimeConstants.DayOfWeek FRIDAY
public static final TimeConstants.DayOfWeek MONDAY
public static final TimeConstants.DayOfWeek SATURDAY
public static final TimeConstants.DayOfWeek SUNDAY
public static final TimeConstants.DayOfWeek THURSDAY
public static final TimeConstants.DayOfWeek TUESDAY
public static final TimeConstants.DayOfWeek WEDNESDAY
| Method Detail |
|---|
public static TimeConstants.DayOfWeek valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic static TimeConstants.DayOfWeek[] values()
for (TimeConstants.DayOfWeek c : TimeConstants.DayOfWeek.values()) System.out.println(c);
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||