p

locales

cldr

package cldr

Type Members

  1. case class Calendar (id: String) extends Product with Serializable

    Interfaces describing calendar data

  2. case class CalendarPatterns (datePatterns: Map[Int, String], timePatterns: Map[Int, String]) extends Product with Serializable
  3. case class CalendarSymbols (months: List[String], shortMonths: List[String], weekdays: List[String], shortWeekdays: List[String], amPm: List[String], eras: List[String]) extends Product with Serializable
  4. case class CurrencyData (currencyTypes: Seq[CurrencyType], fractions: Seq[CurrencyDataFractionsInfo], regions: Seq[CurrencyDataRegion], numericCodes: Seq[CurrencyNumericCode]) extends Product with Serializable

    Interfaces describing the supplementary currency data

  5. case class CurrencyDataFractionsInfo (currencyCode: String, digits: Int, rounding: Int, cashDigits: Option[Int], cashRounding: Option[Int]) extends Product with Serializable
  6. case class CurrencyDataRegion (countryCode: String, currencies: Seq[CurrencyDataRegionCurrency]) extends Product with Serializable
  7. case class CurrencyDataRegionCurrency (currencyCode: String, from: Option[String], to: Option[String], tender: Option[Boolean]) extends Product with Serializable
  8. case class CurrencyDisplayName (name: String, count: Option[String]) extends Product with Serializable

    Number Currencies

  9. case class CurrencyNumericCode (currencyCode: String, numericCode: Int) extends Product with Serializable
  10. case class CurrencySymbol (symbol: String, alt: Option[String]) extends Product with Serializable
  11. case class CurrencyType (currencyCode: String, currencyName: String) extends Product with Serializable
  12. case class LDML (parent: Option[LDML], locale: LDMLLocale, defaultNS: Option[NumberingSystem], digitSymbols: List[Symbols] = Nil, calendarSymbols: Option[CalendarSymbols], calendarPatterns: Option[CalendarPatterns], currencies: List[NumberCurrency]) extends Product with Serializable

    Wrapper to LDML

  13. case class LDMLLocale (language: String, territory: Option[String], variant: Option[String], script: Option[String]) extends Product with Serializable

    Interfaces describing an LDML Locale

  14. case class NumberCurrency (currencyCode: String, symbols: Seq[CurrencySymbol], displayNames: Seq[CurrencyDisplayName]) extends Product with Serializable
  15. case class NumberingSystem (id: String, digits: Seq[Char]) extends Product with Serializable

    Interfaces describing the digit symbols

  16. case class Symbols (ns: NumberingSystem, aliasOf: Option[NumberingSystem], decimal: Option[Char], group: Option[Char], list: Option[Char], percent: Option[Char], minus: Option[Char], perMille: Option[Char], infinity: Option[String], nan: Option[String], exp: Option[String]) extends Product with Serializable

Ungrouped