public static enum CalendarFunctions.DateStartEnd extends java.lang.Enum<CalendarFunctions.DateStartEnd>
Flag stating start or end date
Enum Constant and Description |
---|
ENDDATE
Flag stating the date is enddate
|
STARTDATE
Flag stating the date is startdate
|
Modifier and Type | Method and Description |
---|---|
static CalendarFunctions.DateStartEnd |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarFunctions.DateStartEnd[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarFunctions.DateStartEnd STARTDATE
public static final CalendarFunctions.DateStartEnd ENDDATE
public static CalendarFunctions.DateStartEnd[] values()
for (CalendarFunctions.DateStartEnd c : CalendarFunctions.DateStartEnd.values()) System.out.println(c);
public static CalendarFunctions.DateStartEnd 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