/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 1.3.29
 *
 * 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 Date {
  private long swigCPtr;
  protected boolean swigCMemOwn;

  protected Date(long cPtr, boolean cMemoryOwn) {
    swigCMemOwn = cMemoryOwn;
    swigCPtr = cPtr;
  }

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

  protected void finalize() {
    delete();
  }

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

  public Date() {
    this(QuantLibJNI.new_Date__SWIG_0(), true);
  }

  public Date(int d, Month m, int y) {
    this(QuantLibJNI.new_Date__SWIG_1(d, m.swigValue(), y), true);
  }

  public Date(int serialNumber) {
    this(QuantLibJNI.new_Date__SWIG_2(serialNumber), true);
  }

  public Weekday weekday() {
    return Weekday.swigToEnum(QuantLibJNI.Date_weekday(swigCPtr));
  }

  public int dayOfMonth() {
    return QuantLibJNI.Date_dayOfMonth(swigCPtr);
  }

  public int dayOfYear() {
    return QuantLibJNI.Date_dayOfYear(swigCPtr);
  }

  public Month month() {
    return Month.swigToEnum(QuantLibJNI.Date_month(swigCPtr));
  }

  public int year() {
    return QuantLibJNI.Date_year(swigCPtr);
  }

  public int serialNumber() {
    return QuantLibJNI.Date_serialNumber(swigCPtr);
  }

  public static boolean isLeap(int y) {
    return QuantLibJNI.Date_isLeap(y);
  }

  public static Date minDate() {
    return new Date(QuantLibJNI.Date_minDate(), true);
  }

  public static Date maxDate() {
    return new Date(QuantLibJNI.Date_maxDate(), true);
  }

  public static Date todaysDate() {
    return new Date(QuantLibJNI.Date_todaysDate(), true);
  }

  public static Date endOfMonth(Date arg0) {
    return new Date(QuantLibJNI.Date_endOfMonth(Date.getCPtr(arg0)), true);
  }

  public static boolean isEOM(Date arg0) {
    return QuantLibJNI.Date_isEOM(Date.getCPtr(arg0));
  }

  public static Date nextWeekday(Date arg0, Weekday arg1) {
    return new Date(QuantLibJNI.Date_nextWeekday(Date.getCPtr(arg0), arg1.swigValue()), true);
  }

  public static Date nthWeekday(long n, Weekday arg1, Month m, int y) {
    return new Date(QuantLibJNI.Date_nthWeekday(n, arg1.swigValue(), m.swigValue(), y), true);
  }

  public static boolean isIMMdate(Date arg0) {
    return QuantLibJNI.Date_isIMMdate(Date.getCPtr(arg0));
  }

  public static Date nextIMMdate(Date arg0) {
    return new Date(QuantLibJNI.Date_nextIMMdate(Date.getCPtr(arg0)), true);
  }

  public Date add(int days) {
    return new Date(QuantLibJNI.Date_add__SWIG_0(swigCPtr, days), true);
  }

  public Date subtract(int days) {
    return new Date(QuantLibJNI.Date_subtract__SWIG_0(swigCPtr, days), true);
  }

  public Date add(Period arg0) {
    return new Date(QuantLibJNI.Date_add__SWIG_1(swigCPtr, Period.getCPtr(arg0)), true);
  }

  public Date subtract(Period arg0) {
    return new Date(QuantLibJNI.Date_subtract__SWIG_1(swigCPtr, Period.getCPtr(arg0)), true);
  }

  public Date(String str, String fmt) {
    this(QuantLibJNI.new_Date__SWIG_3(str, fmt), true);
  }

  public int weekdayNumber() {
    return QuantLibJNI.Date_weekdayNumber(swigCPtr);
  }

  public String toString() {
    return QuantLibJNI.Date_toString(swigCPtr);
  }

  public String __repr__() {
    return QuantLibJNI.Date___repr__(swigCPtr);
  }

  public String ISO() {
    return QuantLibJNI.Date_ISO(swigCPtr);
  }

}
