Package com.smartgwt.client.types
Enum FiscalYearMode
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<FiscalYearMode>
,Constable
Strategies for calculating the FiscalYear within a
FiscalCalendar
from the specified
FiscalCalendar.defaultDate
and FiscalCalendar.defaultMonth
If the specified fiscal year
date starts in one calendar year and ends in the next.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static FiscalYearMode
Returns the enum constant of this type with the specified name.static FiscalYearMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
END
The fiscalYear value for the date range will match the calendar year in which the period ends. For example if the defaultDate and defaultMonth were set to represent April 1st, the fiscal year starting on April 1st 2020 would end on April 1st 2021. Setting the fiscalYearMode toend
would mean the fiscalYear value for this block would be 2021.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "end". -
START
The fiscalYear value for the date range will match the calendar year in which the period starts. For example if the defaultDate and defaultMonth were set to represent April 1st, the fiscal year starting on April 1st 2020 would end on April 1st 2021. Setting the fiscalYearMode tostart
would mean the fiscalYear value for this block would be 2020.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "start".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-