Class StiCurrencyFormatService

All Implemented Interfaces:
IStiDefault, IStiJsonReportObject, IStiSerializable, IStiSerializableRef, IStiSerializableToDocument, Cloneable
Direct Known Subclasses:
StiPercentageFormatService

public class StiCurrencyFormatService extends StiNumberFormatService
  • Constructor Details

    • StiCurrencyFormatService

      public StiCurrencyFormatService()
    • StiCurrencyFormatService

      public StiCurrencyFormatService(int positivePattern, int negativePattern, String decimalSeparator, int decimalDigits, String groupSeparator, int groupSize, String symbol, boolean useGroupSeparator, boolean useLocalSetting, String nullDisplay)
      Creates a new format of the type StiCurrencyFormatService with specified arguments.
      Parameters:
      positivePattern - The format pattern for positive currency values.
      negativePattern - The format pattern for negative numeric values.
      decimalSeparator - The string to use as the decimal separator in currency values.
      decimalDigits - The number of decimal places to use in currency values.
      groupSeparator - The string that separates groups of digits to the left of the decimal in currency values.
      groupSize - The number of digits in group to the left of the decimal in currency values.
      symbol - Currency symbol.
      useGroupSeparator - Value indicates that it is necessary to use a group separator.
      useLocalSetting - Value indicates that it is necessary to use local settings.
      nullDisplay - String value to show the value null.
    • StiCurrencyFormatService

      public StiCurrencyFormatService(int positivePattern, int negativePattern, int decimalPlaces, String decimalSeparator, int decimalDigits, String groupSeparator, int groupSize, String symbol, boolean useGroupSeparator, boolean useLocalSetting, String nullDisplay)
      Creates a new format of the type StiCurrencyFormatService with specified arguments.
      Parameters:
      positivePattern - The format pattern for positive currency values.
      negativePattern - The format pattern for negative numeric values.
      decimalPlaces - Do not use argument.
      decimalSeparator - The string to use as the decimal separator in currency values.
      decimalDigits - The number of decimal places to use in currency values.
      groupSeparator - The string that separates groups of digits to the left of the decimal in currency values.
      groupSize - The number of digits in group to the left of the decimal in currency values.
      symbol - Currency symbol.
      useGroupSeparator - Value indicates that it is necessary to use a group separator.
      useLocalSetting - Value indicates that it is necessary to use local settings.
      nullDisplay - String value to show the value null.
  • Method Details