net.finmath.time.businessdaycalendar.BusinessdayCalendarAny Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-lib Show documentation
Show all versions of finmath-lib Show documentation
finmath lib is a Mathematical Finance Library in Java.
It provides algorithms and methodologies related to mathematical finance.
/*
* (c) Copyright Christian P. Fries, Germany. All rights reserved. Contact: [email protected].
*
* Created on 15.09.2013
*/
package net.finmath.time.businessdaycalendar;
import java.util.Calendar;
/**
* A business day calendar, where every day is a business day.
*
* @author Christian Fries
*/
public class BusinessdayCalendarAny extends BusinessdayCalendar {
/**
*
*/
public BusinessdayCalendarAny() {
}
/* (non-Javadoc)
* @see net.finmath.time.BusinessdayCalendarInterface#isBuisinessday(java.util.Calendar)
*/
@Override
public boolean isBusinessday(Calendar date) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy