8145952: ISO 4217 amendment 161
8164784: ISO 4217 amendment 162 Reviewed-by: naoto
This commit is contained in:
parent
d6ba2efe5d
commit
44ec255a91
@ -32,14 +32,14 @@ formatVersion=3
|
||||
# Version of the currency code information in this class.
|
||||
# It is a serial number that accompanies with each amendment.
|
||||
|
||||
dataVersion=160
|
||||
dataVersion=162
|
||||
|
||||
# List of all valid ISO 4217 currency codes.
|
||||
# To ensure compatibility, do not remove codes.
|
||||
|
||||
all=ADP020-AED784-AFA004-AFN971-ALL008-AMD051-ANG532-AOA973-ARS032-ATS040-AUD036-\
|
||||
AWG533-AYM945-AZM031-AZN944-BAM977-BBD052-BDT050-BEF056-BGL100-BGN975-BHD048-BIF108-\
|
||||
BMD060-BND096-BOB068-BOV984-BRL986-BSD044-BTN064-BWP072-BYB112-BYR974-\
|
||||
BMD060-BND096-BOB068-BOV984-BRL986-BSD044-BTN064-BWP072-BYB112-BYR974-BYN933-\
|
||||
BZD084-CAD124-CDF976-CHE947-CHF756-CHW948-CLF990-CLP152-CNY156-COP170-COU970-CRC188-CSD891-CUP192-CUC931-\
|
||||
CVE132-CYP196-CZK203-DEM276-DJF262-DKK208-DOP214-DZD012-EEK233-EGP818-\
|
||||
ERN232-ESP724-ETB230-EUR978-FIM246-FJD242-FKP238-FRF250-GBP826-GEL981-\
|
||||
@ -119,7 +119,7 @@ BD=BDT
|
||||
# BARBADOS
|
||||
BB=BBD
|
||||
# BELARUS
|
||||
BY=BYR
|
||||
BY=BYN
|
||||
# BELGIUM
|
||||
BE=EUR
|
||||
# BELIZE
|
||||
|
@ -92,6 +92,7 @@ BSD=BSD
|
||||
BTN=BTN
|
||||
BWP=BWP
|
||||
BYB=BYB
|
||||
BYN=BYN
|
||||
BYR=BYR
|
||||
BZD=BZD
|
||||
CAD=CAD
|
||||
@ -310,8 +311,9 @@ brl=Brazilian Real
|
||||
bsd=Bahamian Dollar
|
||||
btn=Bhutanese Ngultrum
|
||||
bwp=Botswanan Pula
|
||||
byb=Belarusian New Ruble (1994-1999)
|
||||
byr=Belarusian Ruble
|
||||
byb=Belarusian Ruble (1994-1999)
|
||||
byn=Belarusian Ruble
|
||||
byr=Belarusian Ruble (2000-2016)
|
||||
bzd=Belize Dollar
|
||||
cad=Canadian Dollar
|
||||
cdf=Congolese Franc
|
||||
@ -399,7 +401,7 @@ mro=Mauritanian Ouguiya
|
||||
mtl=Maltese Lira
|
||||
mur=Mauritian Rupee
|
||||
mvr=Maldivian Rufiyaa
|
||||
mwk=Malawian Kwacha
|
||||
mwk=Malawian Malawi Kwacha
|
||||
mxn=Mexican Peso
|
||||
mxv=Mexican Investment Unit
|
||||
myr=Malaysian Ringgit
|
||||
@ -414,7 +416,7 @@ npr=Nepalese Rupee
|
||||
nzd=New Zealand Dollar
|
||||
omr=Omani Rial
|
||||
pab=Panamanian Balboa
|
||||
pen=Peruvian Nuevo Sol
|
||||
pen=Peruvian Sol
|
||||
pgk=Papua New Guinean Kina
|
||||
php=Philippine Peso
|
||||
pkr=Pakistani Rupee
|
||||
|
@ -35,4 +35,5 @@
|
||||
# This notice and attribution to Taligent may not be removed.
|
||||
# Taligent is a registered trademark of Taligent, Inc.
|
||||
|
||||
BYN=\u0420\u0443\u0431
|
||||
BYR=\u0420\u0443\u0431
|
||||
|
@ -23,7 +23,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 4691089 4819436 4942982 5104960 6544471 6627549 7066203 7195759
|
||||
* 8039317 8074350 8074351
|
||||
* 8039317 8074350 8074351 8145952
|
||||
* @summary Validate ISO 4217 data for Currency class.
|
||||
*/
|
||||
|
||||
@ -93,7 +93,7 @@ public class ValidateISO4217 {
|
||||
|
||||
/* Codes that are obsolete, do not have related country */
|
||||
static final String otherCodes =
|
||||
"ADP-AFA-ATS-AYM-AZM-BEF-BGL-BOV-BYB-CHE-CHW-CLF-COU-CUC-CYP-DEM-EEK-ESP-FIM-FRF-GHC-GRD-GWP-IEP-ITL-LUF-MGF-MTL-MXV-MZM-NLG-PTE-ROL-RUR-SDD-SIT-SKK-SRG-TMM-TPE-TRL-VEF-UYI-USN-USS-VEB-XAG-XAU-XBA-XBB-XBC-XBD-XDR-XFO-XFU-XPD-XPT-XSU-XTS-XUA-XXX-YUM-ZMK-ZWD-ZWN-ZWR";
|
||||
"ADP-AFA-ATS-AYM-AZM-BEF-BGL-BOV-BYB-BYR-CHE-CHW-CLF-COU-CUC-CYP-DEM-EEK-ESP-FIM-FRF-GHC-GRD-GWP-IEP-ITL-LUF-MGF-MTL-MXV-MZM-NLG-PTE-ROL-RUR-SDD-SIT-SKK-SRG-TMM-TPE-TRL-VEF-UYI-USN-USS-VEB-XAG-XAU-XBA-XBB-XBC-XBD-XDR-XFO-XFU-XPD-XPT-XSU-XTS-XUA-XXX-YUM-ZMK-ZWD-ZWN-ZWR";
|
||||
|
||||
static boolean err = false;
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
#
|
||||
#
|
||||
# Amendments up until ISO 4217 AMENDMENT NUMBER 160
|
||||
# (As of 19 June 2015)
|
||||
# Amendments up until ISO 4217 AMENDMENT NUMBER 162
|
||||
# (As of 30 Auguest 2016)
|
||||
#
|
||||
|
||||
# Version
|
||||
FILEVERSION=3
|
||||
DATAVERSION=160
|
||||
DATAVERSION=162
|
||||
|
||||
# ISO 4217 currency data
|
||||
AF AFN 971 2
|
||||
@ -28,7 +28,7 @@ BS BSD 44 2
|
||||
BH BHD 48 3
|
||||
BD BDT 50 2
|
||||
BB BBD 52 2
|
||||
BY BYR 974 0
|
||||
BY BYN 933 2
|
||||
BE EUR 978 2
|
||||
BZ BZD 84 2
|
||||
BJ XOF 952 0
|
||||
|
@ -6403,8 +6403,8 @@ CurrencyNames//bgn=Bulgarian Lev
|
||||
CurrencyNames//bif=Burundian Franc
|
||||
CurrencyNames//bob=Bolivian Boliviano
|
||||
CurrencyNames//btn=Bhutanese Ngultrum
|
||||
CurrencyNames//byb=Belarusian New Ruble (1994-1999)
|
||||
CurrencyNames//byr=Belarusian Ruble
|
||||
CurrencyNames//byb=Belarusian Ruble (1994-1999)
|
||||
CurrencyNames//byr=Belarusian Ruble (2000-2016)
|
||||
CurrencyNames//cdf=Congolese Franc
|
||||
CurrencyNames//clf=Chilean Unit of Account (UF)
|
||||
CurrencyNames//cny=Chinese Yuan
|
||||
@ -6436,7 +6436,6 @@ CurrencyNames//mop=Macanese Pataca
|
||||
CurrencyNames//mro=Mauritanian Ouguiya
|
||||
CurrencyNames//mur=Mauritian Rupee
|
||||
CurrencyNames//mvr=Maldivian Rufiyaa
|
||||
CurrencyNames//mwk=Malawian Kwacha
|
||||
CurrencyNames//mxv=Mexican Investment Unit
|
||||
CurrencyNames//mzm=Mozambican Metical (1980-2006)
|
||||
CurrencyNames//mzn=Mozambican Metical
|
||||
@ -6444,7 +6443,6 @@ CurrencyNames//nad=Namibian Dollar
|
||||
CurrencyNames//nio=Nicaraguan C\u00f3rdoba
|
||||
CurrencyNames//nlg=Dutch Guilder
|
||||
CurrencyNames//omr=Omani Rial
|
||||
CurrencyNames//pen=Peruvian Nuevo Sol
|
||||
CurrencyNames//pgk=Papua New Guinean Kina
|
||||
CurrencyNames//pkr=Pakistani Rupee
|
||||
CurrencyNames//pyg=Paraguayan Guarani
|
||||
@ -8287,3 +8285,11 @@ FormatData/de/standalone.MonthAbbreviations/2=M\u00e4r
|
||||
|
||||
# bug #8129361
|
||||
CurrencyNames//hrk=Kuna
|
||||
|
||||
# bug #8164784
|
||||
CurrencyNames//mwk=Malawian Malawi Kwacha
|
||||
CurrencyNames//pen=Peruvian Sol
|
||||
|
||||
# bug #8145952
|
||||
CurrencyNames//byn=Belarusian Ruble
|
||||
CurrencyNames/be_BY/BYN=\u0420\u0443\u0431
|
||||
|
@ -37,7 +37,7 @@
|
||||
* 7003124 7085757 7028073 7171028 7189611 8000983 7195759 8004489 8006509
|
||||
* 7114053 7074882 7040556 8008577 8013836 8021121 6192407 6931564 8027695
|
||||
* 8017142 8037343 8055222 8042126 8074791 8075173 8080774 8129361 8134916
|
||||
* 8145136
|
||||
* 8145136 8145952 8164784
|
||||
* @summary Verify locale data
|
||||
* @modules java.base/sun.util.resources
|
||||
* @run main LocaleDataTest
|
||||
|
Loading…
Reference in New Issue
Block a user