Feature Request: Add curency symbol to Currency Code
Closed this issue · 1 comments
Deleted user commented
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.
}
Deleted user commented
Apologies, I just realised I can get this with:
currencyCode.getCurrency().getSymbol()