public enum DueDateTypeId extends java.lang.Enum<DueDateTypeId>
| Enum Constant and Description |
|---|
ByDay
Denotes form is due on the due day
|
ByLastDay
Denotes form is due by last day of the month
|
BySecondLastDay
Denotes form is due by second to last day of the month
|
| Modifier and Type | Method and Description |
|---|---|
static DueDateTypeId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DueDateTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DueDateTypeId ByDay
public static final DueDateTypeId ByLastDay
public static final DueDateTypeId BySecondLastDay
public static DueDateTypeId[] values()
for (DueDateTypeId c : DueDateTypeId.values()) System.out.println(c);
public static DueDateTypeId 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