190191192193194195196197
* * @category currencies */ public static class LVLCurrency extends Currency { public LVLCurrency() { Data lvlData = new Data("Latvian lat", "LVL", 428, "Ls", "", 100, new Rounding(), "%3% %1$.2f"); data = lvlData; }
202203204205206207208209
* * @category currencies */ public static class MTLCurrency extends Currency { public MTLCurrency() { Data mtlData = new Data("Maltese lira", "MTL", 470, "Lm", "", 100, new Rounding(), "%3% %1$.2f"); data = mtlData; }
214215216217218219220221
* * @category currencies */ public static class NOKCurrency extends Currency { public NOKCurrency() { Data nokData = new Data("Norwegian krone", "NOK", 578, "NKr", "", 100, new Rounding(), "%3% %1$.2f"); data = nokData; }
226227228229230231232233
* * @category currencies */ public static class PLNCurrency extends Currency { public PLNCurrency() { Data plnData = new Data("Polish zloty", "PLN", 985, "zl", "", 100, new Rounding(), "%1$.2f %3%"); data = plnData; }
240241242243244245246247
* * @category currencies */ public static class ROLCurrency extends Currency { public ROLCurrency() { Data rolData = new Data("Romanian leu", "ROL", 642, "L", "", 100, new Rounding(), "%1$.2f %3%"); data = rolData; }
252253254255256257258259
* * @category currencies */ public static class RONCurrency extends Currency { public RONCurrency() { Data ronData = new Data("Romanian new leu", "RON", 946, "L", "", 100, new Rounding(), "%1$.2f %3%"); data = ronData; }
264265266267268269270271
* * @category currencies */ public static class SEKCurrency extends Currency { public SEKCurrency() { Data sekData = new Data("Swedish krona", "SEK", 752, "kr", "", 100, new Rounding(), "%1$.2f %3%"); data = sekData; }
276277278279280281282283
* * @category currencies */ public static class SITCurrency extends Currency { public SITCurrency() { Data sitData = new Data("Slovenian tolar", "SIT", 705, "SlT", "", 100, new Rounding(), "%1$.2f %3%"); data = sitData; }
288289290291292293294295
* * @category currencies */ public static class SKKCurrency extends Currency { public SKKCurrency() { Data skkData = new Data("Slovak koruna", "SKK", 703, "Sk", "", 100, new Rounding(), "%1$.2f %3%"); data = skkData; }
302303304305306307308309
* * @category currencies */ public static class TRLCurrency extends Currency { public TRLCurrency() { Data trlData = new Data("Turkish lira", "TRL", 792, "TL", "", 100, new Rounding(), "%1$.0f %3%"); data = trlData; }