All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squarespace.cldrengine.internal.NumberSystemInfo Maven / Gradle / Ivy

The newest version!
package com.squarespace.cldrengine.internal;


import com.squarespace.cldrengine.api.NumberMiscPatternType;
import com.squarespace.cldrengine.api.NumberSymbolType;

public class NumberSystemInfo {

  public final Vector1Arrow symbols;
  public final CurrencyFormats currencyFormats;
  public final DecimalFormats decimalFormats;
  public final FieldArrow percentFormat;
  public final FieldArrow scientificFormat;
  public final Vector1Arrow miscPatterns;

  public NumberSystemInfo(
      Vector1Arrow symbols,
      CurrencyFormats currencyFormats,
      DecimalFormats decimalFormats,
      FieldArrow percentFormat,
      FieldArrow scientificFormat,
      Vector1Arrow miscPatterns) {
    this.symbols = symbols;
    this.currencyFormats = currencyFormats;
    this.decimalFormats = decimalFormats;
    this.percentFormat = percentFormat;
    this.scientificFormat = scientificFormat;
    this.miscPatterns = miscPatterns;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy