TakahikoKawasaki/nv-i18n

Feature Request: Add curency symbol to Currency Code

Closed this issue · 1 comments

It would be very useful (for me) if the following method was added to the CurrencyCode enum

String getSymbol() {
  // returns "$" for US dollar, "€" for Euro, etc.
}

Apologies, I just realised I can get this with:

currencyCode.getCurrency().getSymbol()