~ubuntu-branches/ubuntu/vivid/quantlib-swig/vivid

« back to all changes in this revision

Viewing changes to Java/org/quantlib/CubicSplineInterpolation.java

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2009-12-03 17:01:53 UTC
  • mfrom: (1.1.9 upstream) (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20091203170153-x5yrwybjsl2q11vw
* New upstream release

* debian/control: Updated Standards-Version: to current value

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ----------------------------------------------------------------------------
2
 
 * This file was automatically generated by SWIG (http://www.swig.org).
3
 
 * Version 1.3.36
4
 
 *
5
 
 * Do not make changes to this file unless you know what you are doing--modify
6
 
 * the SWIG interface file instead.
7
 
 * ----------------------------------------------------------------------------- */
8
 
 
9
 
package org.quantlib;
10
 
 
11
 
public class CubicSplineInterpolation {
12
 
  private long swigCPtr;
13
 
  protected boolean swigCMemOwn;
14
 
 
15
 
  protected CubicSplineInterpolation(long cPtr, boolean cMemoryOwn) {
16
 
    swigCMemOwn = cMemoryOwn;
17
 
    swigCPtr = cPtr;
18
 
  }
19
 
 
20
 
  protected static long getCPtr(CubicSplineInterpolation obj) {
21
 
    return (obj == null) ? 0 : obj.swigCPtr;
22
 
  }
23
 
 
24
 
  protected void finalize() {
25
 
    delete();
26
 
  }
27
 
 
28
 
  public synchronized void delete() {
29
 
    if(swigCPtr != 0 && swigCMemOwn) {
30
 
      swigCMemOwn = false;
31
 
      QuantLibJNI.delete_CubicSplineInterpolation(swigCPtr);
32
 
    }
33
 
    swigCPtr = 0;
34
 
  }
35
 
 
36
 
  public CubicSplineInterpolation(Array x, Array y) {
37
 
    this(QuantLibJNI.new_CubicSplineInterpolation(Array.getCPtr(x), x, Array.getCPtr(y), y), true);
38
 
  }
39
 
 
40
 
  public double getValue(double x, boolean allowExtrapolation) {
41
 
    return QuantLibJNI.CubicSplineInterpolation_getValue__SWIG_0(swigCPtr, this, x, allowExtrapolation);
42
 
  }
43
 
 
44
 
  public double getValue(double x) {
45
 
    return QuantLibJNI.CubicSplineInterpolation_getValue__SWIG_1(swigCPtr, this, x);
46
 
  }
47
 
 
48
 
  public double derivative(double x, boolean extrapolate) {
49
 
    return QuantLibJNI.CubicSplineInterpolation_derivative__SWIG_0(swigCPtr, this, x, extrapolate);
50
 
  }
51
 
 
52
 
  public double derivative(double x) {
53
 
    return QuantLibJNI.CubicSplineInterpolation_derivative__SWIG_1(swigCPtr, this, x);
54
 
  }
55
 
 
56
 
  public double secondDerivative(double x, boolean extrapolate) {
57
 
    return QuantLibJNI.CubicSplineInterpolation_secondDerivative__SWIG_0(swigCPtr, this, x, extrapolate);
58
 
  }
59
 
 
60
 
  public double secondDerivative(double x) {
61
 
    return QuantLibJNI.CubicSplineInterpolation_secondDerivative__SWIG_1(swigCPtr, this, x);
62
 
  }
63
 
 
64
 
}