public interface

GwtLocaleFactory

com.google.gwt.i18n.shared.GwtLocaleFactory
Known Indirect Subclasses

Class Overview

Factories that know how to create GwtLocale instances.

Summary

Public Methods
abstract GwtLocale fromComponents(String language, String script, String region, String variant)
Construct a GWT locale from its component parts.
abstract 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).
abstract GwtLocale getDefault()
Returns an instance of the default locale.

Public Methods

public abstract 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.

Returns
  • GwtLocale instance, unique for a given set of values

public abstract 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.

Returns
  • a locale instance, always the same one for a given localeName

public abstract GwtLocale getDefault ()

Returns an instance of the default locale.