1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 1.3.33
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package org.quantlib;
public class InterestRate {
private long swigCPtr;
protected boolean swigCMemOwn;
protected InterestRate(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(InterestRate obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public synchronized void delete() {
if(swigCPtr != 0 && swigCMemOwn) {
swigCMemOwn = false;
QuantLibJNI.delete_InterestRate(swigCPtr);
}
swigCPtr = 0;
}
public InterestRate() {
this(QuantLibJNI.new_InterestRate__SWIG_0(), true);
}
public InterestRate(double r, DayCounter dc, Compounding comp, Frequency freq) {
this(QuantLibJNI.new_InterestRate__SWIG_1(r, DayCounter.getCPtr(dc), dc, comp.swigValue(), freq.swigValue()), true);
}
public InterestRate(double r, DayCounter dc, Compounding comp) {
this(QuantLibJNI.new_InterestRate__SWIG_2(r, DayCounter.getCPtr(dc), dc, comp.swigValue()), true);
}
public double rate() {
return QuantLibJNI.InterestRate_rate(swigCPtr, this);
}
public DayCounter dayCounter() {
return new DayCounter(QuantLibJNI.InterestRate_dayCounter(swigCPtr, this), true);
}
public Compounding compounding() {
return Compounding.swigToEnum(QuantLibJNI.InterestRate_compounding(swigCPtr, this));
}
public Frequency frequency() {
return Frequency.swigToEnum(QuantLibJNI.InterestRate_frequency(swigCPtr, this));
}
public double discountFactor(double t) {
return QuantLibJNI.InterestRate_discountFactor__SWIG_0(swigCPtr, this, t);
}
public double discountFactor(Date d1, Date d2) {
return QuantLibJNI.InterestRate_discountFactor__SWIG_1(swigCPtr, this, Date.getCPtr(d1), d1, Date.getCPtr(d2), d2);
}
public double compoundFactor(double t) {
return QuantLibJNI.InterestRate_compoundFactor__SWIG_0(swigCPtr, this, t);
}
public double compoundFactor(Date d1, Date d2) {
return QuantLibJNI.InterestRate_compoundFactor__SWIG_1(swigCPtr, this, Date.getCPtr(d1), d1, Date.getCPtr(d2), d2);
}
public static InterestRate impliedRate(double compound, double t, DayCounter resultDC, Compounding comp, Frequency freq) {
return new InterestRate(QuantLibJNI.InterestRate_impliedRate__SWIG_0(compound, t, DayCounter.getCPtr(resultDC), resultDC, comp.swigValue(), freq.swigValue()), true);
}
public static InterestRate impliedRate(double compound, double t, DayCounter resultDC, Compounding comp) {
return new InterestRate(QuantLibJNI.InterestRate_impliedRate__SWIG_1(compound, t, DayCounter.getCPtr(resultDC), resultDC, comp.swigValue()), true);
}
public static InterestRate impliedRate(double compound, Date d1, Date d2, DayCounter resultDC, Compounding comp, Frequency freq) {
return new InterestRate(QuantLibJNI.InterestRate_impliedRate__SWIG_2(compound, Date.getCPtr(d1), d1, Date.getCPtr(d2), d2, DayCounter.getCPtr(resultDC), resultDC, comp.swigValue(), freq.swigValue()), true);
}
public static InterestRate impliedRate(double compound, Date d1, Date d2, DayCounter resultDC, Compounding comp) {
return new InterestRate(QuantLibJNI.InterestRate_impliedRate__SWIG_3(compound, Date.getCPtr(d1), d1, Date.getCPtr(d2), d2, DayCounter.getCPtr(resultDC), resultDC, comp.swigValue()), true);
}
public InterestRate equivalentRate(double t, Compounding comp, Frequency freq) {
return new InterestRate(QuantLibJNI.InterestRate_equivalentRate__SWIG_0(swigCPtr, this, t, comp.swigValue(), freq.swigValue()), true);
}
public InterestRate equivalentRate(double t, Compounding comp) {
return new InterestRate(QuantLibJNI.InterestRate_equivalentRate__SWIG_1(swigCPtr, this, t, comp.swigValue()), true);
}
public InterestRate equivalentRate(Date d1, Date d2, DayCounter resultDayCounter, Compounding comp, Frequency freq) {
return new InterestRate(QuantLibJNI.InterestRate_equivalentRate__SWIG_2(swigCPtr, this, Date.getCPtr(d1), d1, Date.getCPtr(d2), d2, DayCounter.getCPtr(resultDayCounter), resultDayCounter, comp.swigValue(), freq.swigValue()), true);
}
public InterestRate equivalentRate(Date d1, Date d2, DayCounter resultDayCounter, Compounding comp) {
return new InterestRate(QuantLibJNI.InterestRate_equivalentRate__SWIG_3(swigCPtr, this, Date.getCPtr(d1), d1, Date.getCPtr(d2), d2, DayCounter.getCPtr(resultDayCounter), resultDayCounter, comp.swigValue()), true);
}
public String toString() {
return QuantLibJNI.InterestRate_toString(swigCPtr, this);
}
}
|