446447448449450451452453
* * @category currencies */ public static class LUFCurrency extends Currency { public LUFCurrency() { Data lufData = new Data("Luxembourg franc", "LUF", 442, "F", "", 100, new Rounding(), "%1$.0f %3%", new EURCurrency()); data_ = lufData; }
467468469470471472473474
* * @category currencies */ public static class NLGCurrency extends Currency { public NLGCurrency() { Data nlgData = new Data("Dutch guilder", "NLG", 528, "f", "", 100, new Rounding(), "%3% %1$.2f", new EURCurrency()); data_ = nlgData; }
480481482483484485486487488
* * @category currencies */ public static class PTECurrency extends Currency { public PTECurrency() { Data pteData = new Data("Portuguese escudo", "PTE", 620, "Esc", "", 100, new Rounding(), "%1$.0f %3%", new EURCurrency()); data_ = pteData; }
4546474849505152
* * @category currencies */ public static class ARSCurrency extends Currency { public ARSCurrency() { Data arsData = new Data("Argentinian peso", "ARS", 32, "", "", 100, new Rounding(), "%2% %1$.2f"); data_ = arsData; }
5758596061626364
* * @category currencies */ public static class BRLCurrency extends Currency { public BRLCurrency() { Data brlData = new Data("Brazilian real", "BRL", 986, "R$", "", 100, new Rounding(), "%3% %1$.2f"); data_ = brlData; }
6970717273747576
* * @category currencies */ public static class CADCurrency extends Currency { public CADCurrency() { Data cadData = new Data("Canadian dollar", "CAD", 124, "Can$", "", 100, new Rounding(), "%3% %1$.2f"); data_ = cadData; }
8182838485868788
* * @category currencies */ public static class CLPCurrency extends Currency { public CLPCurrency() { Data clpData = new Data("Chilean peso", "CLP", 152, "Ch$", "", 100, new Rounding(), "%3% %1$.0f"); data_ = clpData; }
93949596979899100
* * @category currencies */ public static class COPCurrency extends Currency { public COPCurrency() { Data copData = new Data("Colombian peso", "COP", 170, "Col$", "", 100, new Rounding(), "%3% %1$.2f"); data_ = copData; }
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; }