Searched refs:currencyInfo (Results 1 - 1 of 1) sorted by relevance

/openjdk9/jdk/make/src/classes/build/tools/generatecurrencydata/
H A DGenerateCurrencyData.java197 String currencyInfo = (String) currencyData.get(countryCode);
199 if (currencyInfo == null) {
203 int length = currencyInfo.length();
209 if (currencyInfo.charAt(0) == firstChar && currencyInfo.charAt(1) == secondChar) {
210 checkCurrencyCode(currencyInfo);
211 int digits = getDefaultFractionDigits(currencyInfo);
213 throw new RuntimeException("fraction digits out of range for " + currencyInfo);
215 int numericCode= getNumericCode(currencyInfo);
217 throw new RuntimeException("numeric code out of range for " + currencyInfo);
258 makeSpecialCaseEntry(String currencyInfo) argument
[all...]

Completed in 156 milliseconds