Package org.jquantlib.math

Examples of org.jquantlib.math.Rounding$CeilingTruncation


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

     *
     * @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, "$", "\u00A2", 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

     */
    public static class NZDCurrency extends Currency {
      public NZDCurrency() {
            Data nzdData=new Data("New Zealand dollar", "NZD", 554,
                                             "NZ$", "", 100,
                                             new Rounding(),
                                             "%3% %1$.2f");
            data = nzdData;
        }
View Full Code Here

     */
    public static class ZARCurrency extends Currency {
      public ZARCurrency() {
            Data zarData= new Data("South-African rand", "ZAR", 710,
                                             "R", "", 100,
                                             new Rounding(),
                                             "%3% %1$.2f");
            data = zarData;
        }
View Full Code Here

     *
     * @category currencies
     */
    public static class BGLCurrency extends Currency {
        public BGLCurrency() {
            Data bglData = new Data("Bulgarian lev", "BGL", 100, "lv", "", 100, new Rounding(), "%1$.2f %3%");
            data = bglData;
        }
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.