public enum DateRange extends Enum<DateRange>
| Modifier and Type | Class and Description |
|---|---|
class |
DateRange.Range
This class represent a date range.
|
| Enum Constant and Description |
|---|
ANY_MOMENT |
THIS_MONTH |
THIS_WEEK |
THIS_YEAR |
TODAY |
| Modifier and Type | Method and Description |
|---|---|
Date |
from()
Extracts the minimum date available in the date range
|
int |
getId() |
String |
getValue() |
Date |
to()
Extracts the maximum date available in the date range
|
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 nullpublic String getValue()
public int getId()
public Date from()
public Date to()
Copyright © 2018. All rights reserved.