/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (https://www.swig.org).
 * Version 4.1.0
 *
 * 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 BlackCapFloorEngine extends PricingEngine {
  private transient long swigCPtr;
  private transient boolean swigCMemOwnDerived;

  protected BlackCapFloorEngine(long cPtr, boolean cMemoryOwn) {
    super(QuantLibJNI.BlackCapFloorEngine_SWIGSmartPtrUpcast(cPtr), true);
    swigCMemOwnDerived = cMemoryOwn;
    swigCPtr = cPtr;
  }

  protected static long getCPtr(BlackCapFloorEngine obj) {
    return (obj == null) ? 0 : obj.swigCPtr;
  }

  protected void swigSetCMemOwn(boolean own) {
    swigCMemOwnDerived = own;
    super.swigSetCMemOwn(own);
  }

  @SuppressWarnings("deprecation")
  protected void finalize() {
    delete();
  }

  public synchronized void delete() {
    if (swigCPtr != 0) {
      if (swigCMemOwnDerived) {
        swigCMemOwnDerived = false;
        QuantLibJNI.delete_BlackCapFloorEngine(swigCPtr);
      }
      swigCPtr = 0;
    }
    super.delete();
  }

  public BlackCapFloorEngine(YieldTermStructureHandle termStructure, QuoteHandle vol, DayCounter dc, double displacement) {
    this(QuantLibJNI.new_BlackCapFloorEngine__SWIG_0(YieldTermStructureHandle.getCPtr(termStructure), termStructure, QuoteHandle.getCPtr(vol), vol, DayCounter.getCPtr(dc), dc, displacement), true);
  }

  public BlackCapFloorEngine(YieldTermStructureHandle termStructure, QuoteHandle vol, DayCounter dc) {
    this(QuantLibJNI.new_BlackCapFloorEngine__SWIG_1(YieldTermStructureHandle.getCPtr(termStructure), termStructure, QuoteHandle.getCPtr(vol), vol, DayCounter.getCPtr(dc), dc), true);
  }

  public BlackCapFloorEngine(YieldTermStructureHandle termStructure, QuoteHandle vol) {
    this(QuantLibJNI.new_BlackCapFloorEngine__SWIG_2(YieldTermStructureHandle.getCPtr(termStructure), termStructure, QuoteHandle.getCPtr(vol), vol), true);
  }

  public BlackCapFloorEngine(YieldTermStructureHandle termStructure, OptionletVolatilityStructureHandle vol, double displacement) {
    this(QuantLibJNI.new_BlackCapFloorEngine__SWIG_3(YieldTermStructureHandle.getCPtr(termStructure), termStructure, OptionletVolatilityStructureHandle.getCPtr(vol), vol, displacement), true);
  }

  public BlackCapFloorEngine(YieldTermStructureHandle termStructure, OptionletVolatilityStructureHandle vol) {
    this(QuantLibJNI.new_BlackCapFloorEngine__SWIG_4(YieldTermStructureHandle.getCPtr(termStructure), termStructure, OptionletVolatilityStructureHandle.getCPtr(vol), vol), true);
  }

}
