Interface GwtLocaleFactory

All Known Implementing Classes:
GwtLocaleFactoryImpl

public interface GwtLocaleFactory
Factories that know how to create GwtLocale instances.
  • Method Summary

    Modifier and Type
    Method
    Description
    fromComponents(String language, String script, String region, String variant)
    Construct a GWT locale from its component parts.
    fromString(String localeName)
    Get a GWT locale from a string conforming to a subset of BCP47 (specifically assuming extension tags are not present, at most one variant is present, and grandfathered tags are not supported; also private-use tags are only supported for the entire tag).
    Returns an instance of the default locale.
  • Method Details

    • fromComponents

      GwtLocale fromComponents(String language, String script, String region, String variant)
      Construct a GWT locale from its component parts. Null or empty strings are accepted for parts not present.
      Parameters:
      language -
      script -
      region -
      variant -
      Returns:
      GwtLocale instance, unique for a given set of values
    • fromString

      GwtLocale fromString(String localeName)
      Get a GWT locale from a string conforming to a subset of BCP47 (specifically assuming extension tags are not present, at most one variant is present, and grandfathered tags are not supported; also private-use tags are only supported for the entire tag). Only minimal validation of BCP47 tags is performed, and will continue with what it is able to parse if unexpected input is encountered. A null or empty string is treated as the default locale.
      Parameters:
      localeName -
      Returns:
      a locale instance, always the same one for a given localeName
    • getDefault

      GwtLocale getDefault()
      Returns an instance of the default locale.