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

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

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


import com.squarespace.cldrengine.api.AltType;
import com.squarespace.cldrengine.api.PluralType;
import com.squarespace.cldrengine.api.CurrencyType;

public class CurrenciesSchema {

  public final Vector1Arrow displayName;
  public final Vector1Arrow decimal;
  public final Vector2Arrow pluralName;
  public final Vector2Arrow symbol;

  public CurrenciesSchema(
      Vector1Arrow displayName,
      Vector1Arrow decimal,
      Vector2Arrow pluralName,
      Vector2Arrow symbol) {
    this.displayName = displayName;
    this.decimal = decimal;
    this.pluralName = pluralName;
    this.symbol = symbol;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy