105106107108109110111112
* * @category currencies */ public static class MXNCurrency extends Currency { public MXNCurrency() { Data mxnData = new Data("Mexican peso", "MXN", 484, "Mex$", "", 100, new Rounding(), "%3% %1$.2f"); data = mxnData; }
117118119120121122123124
* * @category currencies */ public static class PENCurrency extends Currency { public PENCurrency() { Data penData = new Data("Peruvian nuevo sol", "PEN", 604, "S/.", "", 100, new Rounding(), "%3% %1$.2f"); data = penData; }
132133134135136137138139
* * @category currencies */ public static class PEICurrency extends Currency { public PEICurrency() { Data peiData = new Data("Peruvian inti", "PEI", 998, "I/.", "", 100, new Rounding(), "%3% %1$.2f"); data = peiData; }
147148149150151152153154
* * @category currencies */ public static class PEHCurrency extends Currency { public PEHCurrency() { Data pehData = new Data("Peruvian sol", "PEH", 999, "S./", "", 100, new Rounding(), "%3% %1$.2f"); data = pehData; }
159160161162163164165166
* * @category currencies */ public static class TTDCurrency extends Currency { public TTDCurrency() { Data ttdData = new Data("Trinidad & Tobago dollar", "TTD", 780, "TT$", "", 100, new Rounding(), "%3% %1$.2f"); data = ttdData; }
171172173174175176177178
* * @category currencies */ public static class USDCurrency extends Currency { public USDCurrency() { Data usdData = new Data("U.S. dollar", "USD", 840, "$", "\u00A2", 100, new Rounding(), "%3% %1$.2f"); data = usdData; }
183184185186187188189190
* * @category currencies */ public static class VEBCurrency extends Currency { public VEBCurrency() { Data vebData = new Data("Venezuelan bolivar", "VEB", 862, "Bs", "", 100, new Rounding(), "%3% %1$.2f"); data = vebData; }
646566676869707172
*/ public static class NZDCurrency extends Currency { public NZDCurrency() { Data nzdData=new Data("New Zealand dollar", "NZD", 554, "NZ$", "", 100, new Rounding(), "%3% %1$.2f"); data = nzdData; }
505152535455565758
*/ public static class ZARCurrency extends Currency { public ZARCurrency() { Data zarData= new Data("South-African rand", "ZAR", 710, "R", "", 100, new Rounding(), "%3% %1$.2f"); data = zarData; }
4647484950515253
* * @category currencies */ public static class BGLCurrency extends Currency { public BGLCurrency() { Data bglData = new Data("Bulgarian lev", "BGL", 100, "lv", "", 100, new Rounding(), "%1$.2f %3%"); data = bglData; }