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

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

  protected static long getCPtr(SwaptionVolatilityDiscrete 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_SwaptionVolatilityDiscrete(swigCPtr);
      }
      swigCPtr = 0;
    }
    super.delete();
  }

  public PeriodVector optionTenors() {
    return new PeriodVector(QuantLibJNI.SwaptionVolatilityDiscrete_optionTenors(swigCPtr, this), false);
  }

  public DateVector optionDates() {
    return new DateVector(QuantLibJNI.SwaptionVolatilityDiscrete_optionDates(swigCPtr, this), false);
  }

  public DoubleVector optionTimes() {
    return new DoubleVector(QuantLibJNI.SwaptionVolatilityDiscrete_optionTimes(swigCPtr, this), false);
  }

  public PeriodVector swapTenors() {
    return new PeriodVector(QuantLibJNI.SwaptionVolatilityDiscrete_swapTenors(swigCPtr, this), false);
  }

  public DoubleVector swapLengths() {
    return new DoubleVector(QuantLibJNI.SwaptionVolatilityDiscrete_swapLengths(swigCPtr, this), false);
  }

  public Date optionDateFromTime(double optionTime) {
    return new Date(QuantLibJNI.SwaptionVolatilityDiscrete_optionDateFromTime(swigCPtr, this, optionTime), true);
  }

}
