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

java.util.Locale.scala Maven / Gradle / Ivy

The newest version!
package java.util

class Locale(language: String, country: String, variant: String) {

  def this(language: String) = this(language, null, null)

  def this(language: String, country: String) = this(language, country, null)
}

object Locale {

  final val ROOT: Locale = new Locale("ROOT")

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy