Examples of Rounding


Examples of org.jquantlib.math.Rounding

     *
     * @category currencies
     */
    public static class LTLCurrency extends Currency {
        public LTLCurrency() {
            Data ltlData = new Data("Lithuanian litas", "LTL", 440, "Lt", "", 100, new Rounding(), "%1$.2f %3%");
            data_ = ltlData;
        }
View Full Code Here

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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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

Examples of org.jquantlib.math.Rounding

     *
     * @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
TOP
Copyright © 2018 www.massapi.com. 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.