Uses of Interface
com.google.gwt.i18n.shared.GwtLocale
-
Packages that use GwtLocale Package Description com.google.gwt.core.server com.google.gwt.i18n.rebind This package contains i18n generators.com.google.gwt.i18n.server This package contains server-side i18n classes and interfaces.com.google.gwt.i18n.shared This package contains i18n classes and interfaces shared between client and server. -
-
Uses of GwtLocale in com.google.gwt.core.server
Methods in com.google.gwt.core.server that return GwtLocale Modifier and Type Method Description static GwtLocale
ServerGwtBridge. getLocale(ServerGwtBridge.Properties properties)
-
Uses of GwtLocale in com.google.gwt.i18n.rebind
Methods in com.google.gwt.i18n.rebind that return GwtLocale Modifier and Type Method Description GwtLocale
LocaleUtils. getCompileLocale()
Returns the static compile-time locale for this permutation.Methods in com.google.gwt.i18n.rebind that return types with arguments of type GwtLocale Modifier and Type Method Description java.util.Set<GwtLocale>
LocaleUtils. getAllCompileLocales()
Returns the set of all compile-time locales.java.util.Set<GwtLocale>
LocaleUtils. getAllLocales()
Returns the set of all available locales, whether compile-time locales or runtime locales.java.util.Set<GwtLocale>
LocaleUtils. getRuntimeLocales()
Returns a list of locales which are children of the current compile-time locale. -
Uses of GwtLocale in com.google.gwt.i18n.server
Classes in com.google.gwt.i18n.server that implement GwtLocale Modifier and Type Class Description class
GwtLocaleImpl
Class representing GWT locales and conversion to/from other formats.Methods in com.google.gwt.i18n.server that return GwtLocale Modifier and Type Method Description GwtLocale
GwtLocaleFactoryImpl. fromComponents(java.lang.String language, java.lang.String script, java.lang.String region, java.lang.String variant)
GwtLocale
GwtLocaleFactoryImpl. fromString(java.lang.String localeName)
GwtLocale
GwtLocaleImpl. getCanonicalForm()
Returns this locale in canonical form.GwtLocale
GwtLocaleFactoryImpl. getDefault()
Methods in com.google.gwt.i18n.server that return types with arguments of type GwtLocale Modifier and Type Method Description java.util.List<GwtLocale>
GwtLocaleImpl. getAliases()
java.util.List<GwtLocale>
GwtLocaleImpl. getCompleteSearchList()
java.util.List<GwtLocale>
GwtLocaleImpl. getInheritanceChain()
Return a list of locales to search for, in order of preference.Methods in com.google.gwt.i18n.server with parameters of type GwtLocale Modifier and Type Method Description int
GwtLocaleImpl. compareTo(GwtLocale o)
boolean
GwtLocaleImpl. inheritsFrom(GwtLocale parent)
Return true if this locale inherits from the specified locale.boolean
GwtLocaleImpl. usesSameScript(GwtLocale other)
Checks if this locale uses the same script as another locale, taking into account default scripts. -
Uses of GwtLocale in com.google.gwt.i18n.shared
Methods in com.google.gwt.i18n.shared that return GwtLocale Modifier and Type Method Description GwtLocale
GwtLocaleFactory. fromComponents(java.lang.String language, java.lang.String script, java.lang.String region, java.lang.String variant)
Construct a GWT locale from its component parts.GwtLocale
GwtLocaleFactory. fromString(java.lang.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).GwtLocale
GwtLocale. getCanonicalForm()
Returns this locale in canonical form.GwtLocale
GwtLocaleFactory. getDefault()
Returns an instance of the default locale.Methods in com.google.gwt.i18n.shared that return types with arguments of type GwtLocale Modifier and Type Method Description java.util.List<GwtLocale>
GwtLocale. getAliases()
Returns the list of aliases for this locale.java.util.List<GwtLocale>
GwtLocale. getCompleteSearchList()
Returns the complete list of locales to search for the current locale.java.util.List<GwtLocale>
GwtLocale. getInheritanceChain()
Returns a list of locales to search for, in order of preference.Methods in com.google.gwt.i18n.shared with parameters of type GwtLocale Modifier and Type Method Description int
GwtLocale. compareTo(GwtLocale o)
The default comparison is a lexical ordering.boolean
GwtLocale. inheritsFrom(GwtLocale parent)
Returns true if this locale inherits from the specified locale.boolean
GwtLocale. usesSameScript(GwtLocale other)
Checks if this locale uses the same script as another locale.
-