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
|
/* ----------------------------------------------------------------------------
* 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 SampledCurve {
private long swigCPtr;
protected boolean swigCMemOwn;
protected SampledCurve(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(SampledCurve obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void finalize() {
delete();
}
public synchronized void delete() {
if(swigCPtr != 0 && swigCMemOwn) {
swigCMemOwn = false;
QuantLibJNI.delete_SampledCurve(swigCPtr);
}
swigCPtr = 0;
}
public SampledCurve() {
this(QuantLibJNI.new_SampledCurve__SWIG_0(), true);
}
public SampledCurve(Array arg0) {
this(QuantLibJNI.new_SampledCurve__SWIG_1(Array.getCPtr(arg0), arg0), true);
}
public Array grid() {
return new Array(QuantLibJNI.SampledCurve_grid(swigCPtr, this), false);
}
public Array values() {
return new Array(QuantLibJNI.SampledCurve_values(swigCPtr, this), false);
}
public double gridValue(long i) {
return QuantLibJNI.SampledCurve_gridValue(swigCPtr, this, i);
}
public double value(long i) {
return QuantLibJNI.SampledCurve_value(swigCPtr, this, i);
}
public long size() {
return QuantLibJNI.SampledCurve_size(swigCPtr, this);
}
public boolean empty() {
return QuantLibJNI.SampledCurve_empty(swigCPtr, this);
}
public void setGrid(Array arg0) {
QuantLibJNI.SampledCurve_setGrid(swigCPtr, this, Array.getCPtr(arg0), arg0);
}
public void setValues(Array arg0) {
QuantLibJNI.SampledCurve_setValues(swigCPtr, this, Array.getCPtr(arg0), arg0);
}
public void swap(SampledCurve arg0) {
QuantLibJNI.SampledCurve_swap(swigCPtr, this, SampledCurve.getCPtr(arg0), arg0);
}
public void setLogGrid(double min, double max) {
QuantLibJNI.SampledCurve_setLogGrid(swigCPtr, this, min, max);
}
public void regridLogGrid(double min, double max) {
QuantLibJNI.SampledCurve_regridLogGrid(swigCPtr, this, min, max);
}
public void shiftGrid(double s) {
QuantLibJNI.SampledCurve_shiftGrid(swigCPtr, this, s);
}
public void scaleGrid(double s) {
QuantLibJNI.SampledCurve_scaleGrid(swigCPtr, this, s);
}
public void regrid(Array arg0) {
QuantLibJNI.SampledCurve_regrid(swigCPtr, this, Array.getCPtr(arg0), arg0);
}
}
|