001/* ----------------------------------------------------------------------------
002 * This file was automatically generated by SWIG (https://www.swig.org).
003 * Version 4.1.1
004 *
005 * Do not make changes to this file unless you know what you are doing - modify
006 * the SWIG interface file instead.
007 * ----------------------------------------------------------------------------- */
008
009package org.quantlib;
010
011public class BondPrice implements org.quantlib.helpers.QuantLibJNIHelpers.AutoCloseable {
012  private transient long swigCPtr;
013  protected transient boolean swigCMemOwn;
014
015  protected BondPrice(long cPtr, boolean cMemoryOwn) {
016    swigCMemOwn = cMemoryOwn;
017    swigCPtr = cPtr;
018  }
019
020  protected static long getCPtr(BondPrice obj) {
021    return (obj == null) ? 0 : obj.swigCPtr;
022  }
023
024  protected static long swigRelease(BondPrice obj) {
025    long ptr = 0;
026    if (obj != null) {
027      if (!obj.swigCMemOwn)
028        throw new RuntimeException("Cannot release ownership as memory is not owned");
029      ptr = obj.swigCPtr;
030      obj.swigCMemOwn = false;
031      obj.delete();
032    }
033    return ptr;
034  }
035
036  @SuppressWarnings("deprecation")
037  protected void finalize() {
038    delete();
039  }
040
041  public synchronized void delete() {
042    if (swigCPtr != 0) {
043      if (swigCMemOwn) {
044        swigCMemOwn = false;
045        QuantLibJNI.delete_BondPrice(swigCPtr);
046      }
047      swigCPtr = 0;
048    }
049  }
050
051  public BondPrice(double amount, BondPrice.Type type) {
052    this(QuantLibJNI.new_BondPrice(amount, type.swigValue()), true);
053  }
054
055  public double amount() {
056    return QuantLibJNI.BondPrice_amount(swigCPtr, this);
057  }
058
059  public BondPrice.Type type() {
060    return BondPrice.Type.swigToEnum(QuantLibJNI.BondPrice_type(swigCPtr, this));
061  }
062
063  public final static class Type {
064    public final static BondPrice.Type Dirty = new BondPrice.Type("Dirty");
065    public final static BondPrice.Type Clean = new BondPrice.Type("Clean");
066
067    public final int swigValue() {
068      return swigValue;
069    }
070
071    public String toString() {
072      return swigName;
073    }
074
075    public static Type swigToEnum(int swigValue) {
076      if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
077        return swigValues[swigValue];
078      for (int i = 0; i < swigValues.length; i++)
079        if (swigValues[i].swigValue == swigValue)
080          return swigValues[i];
081      throw new IllegalArgumentException("No enum " + Type.class + " with value " + swigValue);
082    }
083
084    private Type(String swigName) {
085      this.swigName = swigName;
086      this.swigValue = swigNext++;
087    }
088
089    private Type(String swigName, int swigValue) {
090      this.swigName = swigName;
091      this.swigValue = swigValue;
092      swigNext = swigValue+1;
093    }
094
095    private Type(String swigName, Type swigEnum) {
096      this.swigName = swigName;
097      this.swigValue = swigEnum.swigValue;
098      swigNext = this.swigValue+1;
099    }
100
101    private static Type[] swigValues = { Dirty, Clean };
102    private static int swigNext = 0;
103    private final int swigValue;
104    private final String swigName;
105  }
106
107}