GWT 2.7.0

Uses of Interface
com.google.gwt.i18n.shared.GwtLocale

Packages that use GwtLocale
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
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
 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
 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
 class GwtLocaleImpl
          Class representing GWT locales and conversion to/from other formats.
 

Methods in com.google.gwt.i18n.server that return GwtLocale
 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
 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
 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
 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
 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
 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.
 


GWT 2.7.0