List of usage examples for java.util Currency getNumericCode
public int getNumericCode()
From source file:Test.java
public static void main(String[] args) { Set<Currency> currencies = Currency.getAvailableCurrencies(); for (Currency currency : currencies) { System.out.println("" + currency.getDisplayName() + " - " + currency.getDisplayName(Locale.GERMAN) + " - " + currency.getNumericCode()); }/*from w w w . j av a 2 s . c o m*/ }