Enum FiscalYearMode

java.lang.Object
java.lang.Enum<FiscalYearMode>
com.smartgwt.client.types.FiscalYearMode
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<FiscalYearMode>, Constable

public enum FiscalYearMode extends Enum<FiscalYearMode> implements ValueEnum
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.
  • Enum Constant Details

    • END

      public static final FiscalYearMode 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 to end 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

      public static final FiscalYearMode 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 to start 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

      public static FiscalYearMode[] 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

      public static FiscalYearMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum