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

/openjdk9/jdk/make/src/classes/build/tools/generatecurrencydata/
H A DGenerateCurrencyData.java75 private static String validCurrencyCodes; field in class:GenerateCurrencyData
177 validCurrencyCodes = (String) currencyData.get("all");
185 validCurrencyCodes == null ||
251 int index = validCurrencyCodes.indexOf(currencyCode);
252 String numericCode = validCurrencyCodes.substring(index + 3, index + 6);
303 if (validCurrencyCodes.length() % 7 != 6) {
306 for (int i = 0; i < (validCurrencyCodes.length() + 1) / 7; i++) {
307 if (i > 0 && validCurrencyCodes.charAt(i * 7 - 1) != '-') {
310 String currencyCode = validCurrencyCodes.substring(i * 7, i * 7 + 3);
312 validCurrencyCodes
[all...]

Completed in 46 milliseconds