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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptiongetValue()static FiscalYearModeReturns 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- 
ENDThe 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 toendwould mean the fiscalYear value for this block would be 2021.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "end".
- 
STARTThe 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 tostartwould mean the fiscalYear value for this block would be 2020.If this enumerated value is used in a Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "start".
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
getValue
 
-