java.util.spi
public abstract class LocaleNameProvider extends LocaleServiceProvider
Locale
class.Modifier | Constructor and Description |
---|---|
protected |
LocaleNameProvider()
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
abstract String |
getDisplayCountry(String countryCode,
Locale locale)
Returns a localized name for the given ISO 3166 country code and the
given locale that is appropriate for display to the user.
|
abstract String |
getDisplayLanguage(String languageCode,
Locale locale)
Returns a localized name for the given ISO 639 language code and the
given locale that is appropriate for display to the user.
|
abstract String |
getDisplayVariant(String variant,
Locale locale)
Returns a localized name for the given variant code and the given locale that
is appropriate for display to the user.
|
getAvailableLocales
protected LocaleNameProvider()
public abstract String getDisplayLanguage(String languageCode, Locale locale)
languageCode
is "fr" and locale
is en_US, getDisplayLanguage() will return "French"; if languageCode
is "en" and locale
is fr_FR, getDisplayLanguage() will return "anglais".
If the name returned cannot be localized according to locale
,
(say, the provider does not have a Japanese name for Croatian),
this method returns null.languageCode
- the ISO 639 language code string in the form of two
lower-case letters between 'a' (U+0061) and 'z' (U+007A)locale
- the desired localeNullPointerException
- if languageCode
or locale
is nullIllegalArgumentException
- if languageCode
is not in the form of
two lower-case letters, or locale
isn't
one of the locales returned from
getAvailableLocales()
.Locale.getDisplayLanguage(java.util.Locale)
public abstract String getDisplayCountry(String countryCode, Locale locale)
countryCode
is "FR" and locale
is en_US, getDisplayCountry() will return "France"; if countryCode
is "US" and locale
is fr_FR, getDisplayCountry() will return "Etats-Unis".
If the name returned cannot be localized according to locale
,
(say, the provider does not have a Japanese name for Croatia),
this method returns null.countryCode
- the ISO 3166 country code string in the form of two
upper-case letters between 'A' (U+0041) and 'Z' (U+005A)locale
- the desired localeNullPointerException
- if countryCode
or locale
is nullIllegalArgumentException
- if countryCode
is not in the form of
two upper-case letters, or locale
isn't
one of the locales returned from
getAvailableLocales()
.Locale.getDisplayCountry(java.util.Locale)
public abstract String getDisplayVariant(String variant, Locale locale)
locale
,
this method returns null.variant
- the variant stringlocale
- the desired localeNullPointerException
- if variant
or locale
is nullIllegalArgumentException
- if locale
isn't
one of the locales returned from
getAvailableLocales()
.Locale.getDisplayVariant(java.util.Locale)
Submit a bug or feature Copyright © 1993, 2017, Oracle and/or its affiliates. All rights reserved.
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.