Package org.jquantlib.math

Examples of org.jquantlib.math.Rounding$CeilingTruncation


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


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

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

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

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

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

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

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

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

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

TOP

Related Classes of org.jquantlib.math.Rounding$CeilingTruncation

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.