Class FiscalCalendar
- All Implemented Interfaces:
HasHandlers
A fiscal year spans a configurable date range - it may not exactly match a calendar year in length and it can start on any date within the calendar year and potentially end in the next calendar year.
Developers may specify explicit fiscal year start dates by adding
FiscalYear
objects to the fiscal years array
. If none are provided, or if there is no
entry for the given year, one is manufactured based on the default month
and date
.
-
Field Summary
Fields inherited from class com.smartgwt.client.core.RefDataClass
id
Fields inherited from class com.smartgwt.client.core.DataClass
factoryCreated, factoryProperties
-
Constructor Summary
ConstructorDescriptionFiscalCalendar
(int defaultMonth, int defaultDate) FiscalCalendar
(JavaScriptObject jsObj) -
Method Summary
Modifier and TypeMethodDescriptionThe default one-based day-number in thespecified month
to use for calculating fiscal dates when nofiscal years
are provided.The default zero-based month-number to use for calculating fiscal dates when nofiscal years
are provided.This attribute controls how the displayed fiscalYear value should be calculated for dates falling within a period not explicitly listed in thefiscal years array
.An array ofFiscalYear objects
which each represent the start date of a single fiscal year.static FiscalCalendar
getOrCreateRef
(JavaScriptObject jsObj) setDefaultDate
(Integer defaultDate) The default one-based day-number in thespecified month
to use for calculating fiscal dates when nofiscal years
are provided.setDefaultMonth
(Integer defaultMonth) The default zero-based month-number to use for calculating fiscal dates when nofiscal years
are provided.setDefaultYearMode
(FiscalYearMode defaultYearMode) This attribute controls how the displayed fiscalYear value should be calculated for dates falling within a period not explicitly listed in thefiscal years array
.setFiscalYears
(FiscalYear... fiscalYears) An array ofFiscalYear objects
which each represent the start date of a single fiscal year.Methods inherited from class com.smartgwt.client.core.RefDataClass
getRef, getRef, internalSetID
Methods inherited from class com.smartgwt.client.core.DataClass
applyFactoryProperties, doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsDoubleArray, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsLong, getAttributeAsMap, getAttributeAsObject, getAttributeAsRecord, getAttributeAsString, getAttributeAsStringArray, getAttributes, getHandlerCount, isFactoryCreated, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttributeAsJavaObject, setFactoryCreated
-
Constructor Details
-
FiscalCalendar
public FiscalCalendar() -
FiscalCalendar
-
FiscalCalendar
public FiscalCalendar(int defaultMonth, int defaultDate)
-
-
Method Details
-
getOrCreateRef
-
setDefaultDate
The default one-based day-number in thespecified month
to use for calculating fiscal dates when nofiscal years
are provided. This value together withdefaultMonth
will be used as the start date for the fiscal years where no explicitly specified fiscalYear configuration is present.
See alsodefaultYearMode
.- Parameters:
defaultDate
- New defaultDate value. Default value is null- Returns:
FiscalCalendar
instance, for chaining setter calls
-
getDefaultDate
The default one-based day-number in thespecified month
to use for calculating fiscal dates when nofiscal years
are provided. This value together withdefaultMonth
will be used as the start date for the fiscal years where no explicitly specified fiscalYear configuration is present.
See alsodefaultYearMode
.- Returns:
- Current defaultDate value. Default value is null
-
setDefaultMonth
The default zero-based month-number to use for calculating fiscal dates when nofiscal years
are provided. This value together withdefaultDate
will be used as the start date for the fiscal years where no explicitly specified fiscalYear configuration is present.
See alsodefaultYearMode
.- Parameters:
defaultMonth
- New defaultMonth value. Default value is null- Returns:
FiscalCalendar
instance, for chaining setter calls
-
getDefaultMonth
The default zero-based month-number to use for calculating fiscal dates when nofiscal years
are provided. This value together withdefaultDate
will be used as the start date for the fiscal years where no explicitly specified fiscalYear configuration is present.
See alsodefaultYearMode
.- Returns:
- Current defaultMonth value. Default value is null
-
setDefaultYearMode
This attribute controls how the displayed fiscalYear value should be calculated for dates falling within a period not explicitly listed in thefiscal years array
.The
defaultMonth
anddefaultDate
will be used to calculate the start of the fiscal year period. The defaultYearMode determines whether the reported fiscalYear for this period matches the year in which the period starts or the year in which it ends (so whether a fiscal year spanning dates within both 2020 and 2021 is reported as fiscalYear 2020 or 2021).- Parameters:
defaultYearMode
- New defaultYearMode value. Default value is "end"- Returns:
FiscalCalendar
instance, for chaining setter calls
-
getDefaultYearMode
This attribute controls how the displayed fiscalYear value should be calculated for dates falling within a period not explicitly listed in thefiscal years array
.The
defaultMonth
anddefaultDate
will be used to calculate the start of the fiscal year period. The defaultYearMode determines whether the reported fiscalYear for this period matches the year in which the period starts or the year in which it ends (so whether a fiscal year spanning dates within both 2020 and 2021 is reported as fiscalYear 2020 or 2021).- Returns:
- Current defaultYearMode value. Default value is "end"
-
setFiscalYears
An array ofFiscalYear objects
which each represent the start date of a single fiscal year.- Parameters:
fiscalYears
- New fiscalYears value. Default value is null- Returns:
FiscalCalendar
instance, for chaining setter calls
-
getFiscalYears
An array ofFiscalYear objects
which each represent the start date of a single fiscal year.- Returns:
- Current fiscalYears value. Default value is null
-