java.util.Currency.toString() The method java.util.Currency.toString() overrides Object.toString() and returns the ISO 4217 currency code of this currency.
Continue reading Java Util Currency toStringjava-util
java.util.Currency.getSymbol() The method java.util.Currency.getSymbol() gets the symbol of this currency for the default DISPLAY locale or ISO 4217 currency code.
Continue reading Java Util Currency getSymboljava.util.Currency.getSymbol(Locale) The method java.util.Currency.getSymbol(Locale) gets the symbol of this currency for the specified locale or ISO 4217 currency code.
Continue reading Java Util Currency getSymbol(Locale)java.util.Currency.getNumericCode() Currencies are identified by their ISO 4217 currency codes. The method java.util.Currency.getNumericCode() returns the ISO 4217 numeric code of this currency.
Continue reading Java Util Currency getNumericCodejava.util.Currency.getInstance(Locale) The method java.util.Currency.getInstance(Locale) returns the Currency instance for the country of the given locale.
Continue reading java.util.Currency.getInstance(Locale)java.util.Currency.getInstance(String currencyCode) The method java.util.Currency.getInstance(String currencyCode) returns the Currency instance for the given currency code.
Continue reading java.util.Currency.getInstance(String currencyCode)java.util.Currency.getDisplayName(Locale) The method java.util.Currency.getDisplayName(Locale) gets the name that is suitable for displaying this currency for the specified locale.
Continue reading Java Util Currency getDisplayName Localejava.util.Currency.getDisplayName() The method java.util.Currency.getDisplayName() gets the name that is suitable for displaying this currency for the default DISPLAY locale.
Continue reading Java Util Currency getDisplayNamejava.util.Currency.getDefaultFractionDigits() The method java.util.Currency.getDefaultFractionDigits() gets the default number of fraction digits used with this currency.
Continue reading Java Util Currency getDefaultFractionDigitsjava.util.Currency.getCurrencyCode() The method java.util.Currency.getCurrencyCode() gets the ISO 4217 currency code of this currency.
Continue reading Java Util Currency getCurrencyCode