Examples of HolidayDocument


Examples of com.opengamma.master.holiday.HolidayDocument

  protected boolean isHoliday(final HolidaySearchRequest request, final LocalDate dateToCheck) {
    if (isWeekend(dateToCheck)) {
      return true;
    }
    request.setDateToCheck(dateToCheck);
    HolidayDocument doc = getMaster().search(request).getFirstDocument();
    return isHoliday(doc, dateToCheck);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.