public enum DynamicFilterType extends Enum<DynamicFilterType>
Enum Constant and Description |
---|
ABOVE_AVERAGE
Shows values that are above average.
|
BELOW_AVERAGE
Shows values that are below average.
|
LAST_MONTH
Shows last month's dates.
|
LAST_QUARTER
Shows last quarter's dates.
|
LAST_WEEK
Shows last week's dates.
|
LAST_YEAR
Shows last year's dates.
|
MONTH_1
Shows the dates that are in January, regardless of year.
|
MONTH_10
Shows the dates that are in October, regardless of year.
|
MONTH_11
Shows the dates that are in November, regardless of year.
|
MONTH_12
Shows the dates that are in December, regardless of year.
|
MONTH_2
Shows the dates that are in February, regardless of year.
|
MONTH_3
Shows the dates that are in March, regardless of year.
|
MONTH_4
Shows the dates that are in April, regardless of year.
|
MONTH_5
Shows the dates that are in May, regardless of year.
|
MONTH_6
Shows the dates that are in June, regardless of year.
|
MONTH_7
Shows the dates that are in July, regardless of year.
|
MONTH_8
Shows the dates that are in August, regardless of year.
|
MONTH_9
Shows the dates that are in September, regardless of year.
|
NEXT_MONTH
Shows next month's dates.
|
NEXT_QUARTER
Shows next quarter's dates.
|
NEXT_WEEK
Shows next week's dates.
|
NEXT_YEAR
Shows next year's dates.
|
NULL
Common filter type not available.
|
QUARTER_1
Shows the dates that are in the 1st quarter, regardless of year.
|
QUARTER_2
Shows the dates that are in the 2nd quarter, regardless of year.
|
QUARTER_3
Shows the dates that are in the 3rd quarter, regardless of year.
|
QUARTER_4
Shows the dates that are in the 4th quarter, regardless of year.
|
THIS_MONTH
Shows this month's dates.
|
THIS_QUARTER
Shows this quarter's dates.
|
THIS_WEEK
Shows this week's dates.
|
THIS_YEAR
Shows this year's dates.
|
TODAY
Shows today's dates.
|
TOMORROW
Shows tomorrow's dates.
|
YEAR_TO_DATE
Shows the dates between the beginning of the year and today, inclusive.
|
YESTERDAY
Shows yesterday's dates.
|
Modifier and Type | Method and Description |
---|---|
static DynamicFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicFilterType ABOVE_AVERAGE
public static final DynamicFilterType BELOW_AVERAGE
public static final DynamicFilterType LAST_MONTH
public static final DynamicFilterType LAST_QUARTER
public static final DynamicFilterType LAST_WEEK
public static final DynamicFilterType LAST_YEAR
public static final DynamicFilterType MONTH_1
public static final DynamicFilterType MONTH_10
public static final DynamicFilterType MONTH_11
public static final DynamicFilterType MONTH_12
public static final DynamicFilterType MONTH_2
public static final DynamicFilterType MONTH_3
public static final DynamicFilterType MONTH_4
public static final DynamicFilterType MONTH_5
public static final DynamicFilterType MONTH_6
public static final DynamicFilterType MONTH_7
public static final DynamicFilterType MONTH_8
public static final DynamicFilterType MONTH_9
public static final DynamicFilterType NEXT_MONTH
public static final DynamicFilterType NEXT_QUARTER
public static final DynamicFilterType NEXT_WEEK
public static final DynamicFilterType NEXT_YEAR
public static final DynamicFilterType NULL
public static final DynamicFilterType QUARTER_1
public static final DynamicFilterType QUARTER_2
public static final DynamicFilterType QUARTER_3
public static final DynamicFilterType QUARTER_4
public static final DynamicFilterType THIS_MONTH
public static final DynamicFilterType THIS_QUARTER
public static final DynamicFilterType THIS_WEEK
public static final DynamicFilterType THIS_YEAR
public static final DynamicFilterType TODAY
public static final DynamicFilterType TOMORROW
public static final DynamicFilterType YEAR_TO_DATE
public static final DynamicFilterType YESTERDAY
public static DynamicFilterType 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 static DynamicFilterType[] values()
for (DynamicFilterType c : DynamicFilterType.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.