public enum DayOrdinal extends Enum<DayOrdinal>
| Enum Constant and Description |
|---|
FIRST
Represents FIRST ordinal type
|
FOURTH
Represents FOURTH ordinal type
|
LAST
Represents LAST ordinal type
|
SECOND
Represents SECOND ordinal type
|
THIRD
Represents THIRD ordinal type
|
| Modifier and Type | Method and Description |
|---|---|
static DayOrdinal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DayOrdinal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DayOrdinal FIRST
public static final DayOrdinal SECOND
public static final DayOrdinal THIRD
public static final DayOrdinal FOURTH
public static final DayOrdinal LAST
public static DayOrdinal[] values()
for (DayOrdinal c : DayOrdinal.values()) System.out.println(c);
public static DayOrdinal valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2019 Smartsheet. All rights reserved.