public enum DateRange extends Enum<DateRange>
| Enum Constant and Description |
|---|
ANY_MOMENT |
THIS_MONTH |
THIS_WEEK |
THIS_YEAR |
TODAY |
| Modifier and Type | Method and Description |
|---|---|
static DateRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateRange ANY_MOMENT
public static final DateRange TODAY
public static final DateRange THIS_WEEK
public static final DateRange THIS_MONTH
public static final DateRange THIS_YEAR
public static DateRange[] values()
for (DateRange c : DateRange.values()) System.out.println(c);
public static DateRange 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 © 2021. All rights reserved.