Package org.jquantlib.math

Examples of org.jquantlib.math.Rounding$CeilingTruncation


     *
     * @category currencies
     */
    public static class PEICurrency extends Currency {
        public PEICurrency() {
            Data peiData = new Data("Peruvian inti", "PEI", 998, "I/.", "", 100, new Rounding(), "%3% %1$.2f");
            data_ = peiData;
        }
View Full Code Here


     *
     * @category currencies
     */
    public static class PEHCurrency extends Currency {
        public PEHCurrency() {
            Data pehData = new Data("Peruvian sol", "PEH", 999, "S./", "", 100, new Rounding(), "%3% %1$.2f");
            data_ = pehData;
        }
View Full Code Here

     *
     * @category currencies
     */
    public static class TTDCurrency extends Currency {
        public TTDCurrency() {
            Data ttdData = new Data("Trinidad & Tobago dollar", "TTD", 780, "TT$", "", 100, new Rounding(), "%3% %1$.2f");
            data_ = ttdData;
        }
View Full Code Here

     *
     * @category currencies
     */
    public static class USDCurrency extends Currency {
        public USDCurrency() {
            Data usdData = new Data("U.S. dollar", "USD", 840, "$", "\\xA2", 100, new Rounding(), "%3% %1$.2f");
            data_ = usdData;
        }
View Full Code Here

     *
     * @category currencies
     */
    public static class VEBCurrency extends Currency {
        public VEBCurrency() {
            Data vebData = new Data("Venezuelan bolivar", "VEB", 862, "Bs", "", 100, new Rounding(), "%3% %1$.2f");
            data_ = vebData;
        }
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

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.