/* ----------------------------------------------------------------------------
 * 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 IborIndex extends InterestRateIndex {
  private long swigCPtr;

  protected IborIndex(long cPtr, boolean cMemoryOwn) {
    super(QuantLibJNI.SWIGIborIndexUpcast(cPtr), cMemoryOwn);
    swigCPtr = cPtr;
  }

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

  protected void finalize() {
    delete();
  }

  public synchronized void delete() {
    if(swigCPtr != 0 && swigCMemOwn) {
      swigCMemOwn = false;
      QuantLibJNI.delete_IborIndex(swigCPtr);
    }
    swigCPtr = 0;
    super.delete();
  }

  public IborIndex(String familyName, Period tenor, int settlementDays, Currency currency, Calendar calendar, BusinessDayConvention convention, boolean endOfMonth, DayCounter dayCounter, YieldTermStructureHandle h) {
    this(QuantLibJNI.new_IborIndex__SWIG_0(familyName, Period.getCPtr(tenor), tenor, settlementDays, Currency.getCPtr(currency), currency, Calendar.getCPtr(calendar), calendar, convention.swigValue(), endOfMonth, DayCounter.getCPtr(dayCounter), dayCounter, YieldTermStructureHandle.getCPtr(h), h), true);
  }

  public IborIndex(String familyName, Period tenor, int settlementDays, Currency currency, Calendar calendar, BusinessDayConvention convention, boolean endOfMonth, DayCounter dayCounter) {
    this(QuantLibJNI.new_IborIndex__SWIG_1(familyName, Period.getCPtr(tenor), tenor, settlementDays, Currency.getCPtr(currency), currency, Calendar.getCPtr(calendar), calendar, convention.swigValue(), endOfMonth, DayCounter.getCPtr(dayCounter), dayCounter), true);
  }

  public BusinessDayConvention businessDayConvention() {
    return BusinessDayConvention.swigToEnum(QuantLibJNI.IborIndex_businessDayConvention(swigCPtr, this));
  }

  public boolean endOfMonth() {
    return QuantLibJNI.IborIndex_endOfMonth(swigCPtr, this);
  }

}
