public enum DayOfWeekIndex extends java.lang.Enum<DayOfWeekIndex>
| Enum Constant and Description |
|---|
FIRST
First.
|
FOURTH
Fourth.
|
LAST
Last.
|
NONE
None.
|
SECOND
Second.
|
THIRD
Third.
|
| Modifier and Type | Method and Description |
|---|---|
static DayOfWeekIndex |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DayOfWeekIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DayOfWeekIndex FIRST
public static final DayOfWeekIndex SECOND
public static final DayOfWeekIndex THIRD
public static final DayOfWeekIndex FOURTH
public static final DayOfWeekIndex LAST
public static final DayOfWeekIndex NONE
public static DayOfWeekIndex[] values()
for (DayOfWeekIndex c : DayOfWeekIndex.values()) System.out.println(c);
public static DayOfWeekIndex 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 namejava.lang.NullPointerException - if the argument is null