public abstract class CurrencyNameProvider extends LocaleServiceProvider
Currency
class. Note that currency symbols are considered names when determining behaviors described in the LocaleServiceProvider
specification.Modifier | Constructor | Description |
---|---|---|
protected |
Sole constructor. |
Modifier and Type | Method | Description |
---|---|---|
String |
getDisplayName |
Returns a name for the currency that is appropriate for display to the user. |
abstract String |
getSymbol |
Gets the symbol of the given currency code for the specified locale. |
getAvailableLocales, isSupportedLocale
protected CurrencyNameProvider()
public abstract String getSymbol(String currencyCode, Locale locale)
currencyCode
- the ISO 4217 currency code, which consists of three upper-case letters between 'A' (U+0041) and 'Z' (U+005A)locale
- the desired localeNullPointerException
- if currencyCode
or locale
is nullIllegalArgumentException
- if currencyCode
is not in the form of three upper-case letters, or locale
isn't one of the locales returned from getAvailableLocales()
.public String getDisplayName(String currencyCode, Locale locale)
currencyCode
- the ISO 4217 currency code, which consists of three upper-case letters between 'A' (U+0041) and 'Z' (U+005A)locale
- the desired localeIllegalArgumentException
- if currencyCode
is not in the form of three upper-case letters, or locale
isn't one of the locales returned from getAvailableLocales()
.NullPointerException
- if currencyCode
or locale
is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/spi/CurrencyNameProvider.html