Package org.jquantlib.math

Examples of org.jquantlib.math.Rounding


     *
     * @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;
        }
View Full Code Here


     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

     *
     * @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;
        }
View Full Code Here

TOP

Related Classes of org.jquantlib.math.Rounding

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.