public static enum DayOfWeek.Values extends java.lang.Enum<DayOfWeek.Values>
enum
representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
Enum Constant and Description |
---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
FRIDAY
Represents
DayOfWeek.FRIDAY . |
MONDAY
Represents
DayOfWeek.MONDAY . |
SATURDAY
Represents
DayOfWeek.SATURDAY . |
SUNDAY
Represents
DayOfWeek.SUNDAY . |
THURSDAY
Represents
DayOfWeek.THURSDAY . |
TUESDAY
Represents
DayOfWeek.TUESDAY . |
WEDNESDAY
Represents
DayOfWeek.WEDNESDAY . |
Modifier and Type | Method and Description |
---|---|
static DayOfWeek.Values |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DayOfWeek.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DayOfWeek.Values SUNDAY
DayOfWeek.SUNDAY
.public static final DayOfWeek.Values MONDAY
DayOfWeek.MONDAY
.public static final DayOfWeek.Values TUESDAY
DayOfWeek.TUESDAY
.public static final DayOfWeek.Values WEDNESDAY
DayOfWeek.WEDNESDAY
.public static final DayOfWeek.Values THURSDAY
DayOfWeek.THURSDAY
.public static final DayOfWeek.Values FRIDAY
DayOfWeek.FRIDAY
.public static final DayOfWeek.Values SATURDAY
DayOfWeek.SATURDAY
.public static final DayOfWeek.Values _UNKNOWN
enum
constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN
constant, because its version
of the native Java enum
lacks the new constant.public static DayOfWeek.Values[] values()
for (DayOfWeek.Values c : DayOfWeek.Values.values()) System.out.println(c);
public static DayOfWeek.Values 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