public enum DateDefaultValues extends Enum<DateDefaultValues>
| Enum Constant and Description |
|---|
LASTDAYOFMONTH
like today will be evaluated.
|
MONTHS
The Value represents today +-n month.
|
TODAY
The Value is today.
|
WEEKS
The Value represents today +-n weeks.
|
WITHDAYOFMONTH
Integer day of month.
|
WITHDAYOFWEEK
The Value represents today 1,2,3,4,5,6,7.
|
YEARS
The Value represents today +-n years.
|
| Modifier and Type | Method and Description |
|---|---|
static DateDefaultValues |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateDefaultValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateDefaultValues TODAY
public static final DateDefaultValues WEEKS
public static final DateDefaultValues MONTHS
public static final DateDefaultValues YEARS
public static final DateDefaultValues WITHDAYOFWEEK
public static final DateDefaultValues WITHDAYOFMONTH
public static final DateDefaultValues LASTDAYOFMONTH
public static DateDefaultValues[] values()
for (DateDefaultValues c : DateDefaultValues.values()) System.out.println(c);
public static DateDefaultValues 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 © 2003–2015 The eFaps Team. All rights reserved.