Package com.grapecity.documents.excel
Enum Class DynamicFilterType
- All Implemented Interfaces:
Serializable,Comparable<DynamicFilterType>,Constable
Specifies the filter type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies to filter all above-average values.Specifies to filter all below-average values.Specifies to filter all values related to last month.Specifies to filter all values related to last quarter.Specifies to filter all values related to last week.Specifies to filter all values related to last year.Specifies to filter all dates in January.Specifies to filter all dates in October.Specifies to filter all dates in November.Specifies to filter all dates in December.Specifies to filter all dates in February.Specifies to filter all dates in March.Specifies to filter all dates in April.Specifies to filter all dates in May.Specifies to filter all dates in June.Specifies to filter all dates in July.Specifies to filter all dates in August.Specifies to filter all dates in September.Specifies to filter all values related to next month.Specifies to filter all values related to next quarter.Specifies to filter all values related to next week.Specifies to filter all values related to next year.Specifies none.Specifies to filter all dates in Quarter1.Specifies to filter all dates in Quarter2.Specifies to filter all dates in Quarter3.Specifies to filter all dates in Quarter4.Specifies to filter all values related to the current month.Specifies to filter all values related to the current quarter.Specifies to filter all values related to the current week.Specifies to filter all values related to the current year.Specifies to filter all values related to the current date.Specifies to filter all values related to tomorrow.Specifies to filter all values from today until a year ago.Specifies to filter all values related to yesterday. -
Method Summary
Modifier and TypeMethodDescriptionstatic DynamicFilterTypeReturns the enum constant of this class with the specified name.static DynamicFilterType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
Specifies none. -
Today
Specifies to filter all values related to the current date. -
Yesterday
Specifies to filter all values related to yesterday. -
Tomorrow
Specifies to filter all values related to tomorrow. -
ThisWeek
Specifies to filter all values related to the current week. -
LastWeek
Specifies to filter all values related to last week. -
NextWeek
Specifies to filter all values related to next week. -
ThisMonth
Specifies to filter all values related to the current month. -
LastMonth
Specifies to filter all values related to last month. -
NextMonth
Specifies to filter all values related to next month. -
ThisQuarter
Specifies to filter all values related to the current quarter. -
LastQuarter
Specifies to filter all values related to last quarter. -
NextQuarter
Specifies to filter all values related to next quarter. -
ThisYear
Specifies to filter all values related to the current year. -
LastYear
Specifies to filter all values related to last year. -
NextYear
Specifies to filter all values related to next year. -
YearToDate
Specifies to filter all values from today until a year ago. -
Q1
Specifies to filter all dates in Quarter1. -
Q2
Specifies to filter all dates in Quarter2. -
Q3
Specifies to filter all dates in Quarter3. -
Q4
Specifies to filter all dates in Quarter4. -
M1
Specifies to filter all dates in January. -
M2
Specifies to filter all dates in February. -
M3
Specifies to filter all dates in March. -
M4
Specifies to filter all dates in April. -
M5
Specifies to filter all dates in May. -
M6
Specifies to filter all dates in June. -
M7
Specifies to filter all dates in July. -
M8
Specifies to filter all dates in August. -
M9
Specifies to filter all dates in September. -
M10
Specifies to filter all dates in October. -
M11
Specifies to filter all dates in November. -
M12
Specifies to filter all dates in December. -
AboveAverage
Specifies to filter all above-average values. -
BelowAverage
Specifies to filter all below-average values.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-