io.deephaven.time.calendar.DefaultNoHolidayBusinessCalendar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-time Show documentation
Show all versions of deephaven-engine-time Show documentation
Engine Time: Types and libraries for working with instants, periods, and calendars
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
*/
package io.deephaven.time.calendar;
import java.time.DayOfWeek;
import java.time.Instant;
import java.time.LocalDate;
import java.time.ZoneId;
import java.util.List;
import java.util.Map;
/**
* A {@link BusinessCalendar} with no non-business days.
*/
public class DefaultNoHolidayBusinessCalendar extends AbstractBusinessCalendar {
private final BusinessCalendar calendar;
/**
* Creates a new Default24HourBusinessCalendar instance. Assumes that {@code calendar} is a {@link BusinessCalendar}
* with no holidays and a 24 hour business day.
*
* @param calendar {@link BusinessCalendar} with no holidays and a 24 hour business day
*/
protected DefaultNoHolidayBusinessCalendar(final BusinessCalendar calendar) {
this.calendar = calendar;
}
@Override
public List getDefaultBusinessPeriods() {
return calendar.getDefaultBusinessPeriods();
}
@Override
public Map getHolidays() {
return calendar.getHolidays();
}
@Override
public boolean isBusinessDay(DayOfWeek day) {
return true;
}
@Override
public String name() {
return calendar.name();
}
@Override
public ZoneId timeZone() {
return calendar.timeZone();
}
@Override
public long standardBusinessDayLengthNanos() {
return calendar.standardBusinessDayLengthNanos();
}
@Override
@Deprecated
public BusinessSchedule getBusinessDay(final Instant time) {
return calendar.getBusinessDay(time);
}
@Override
@Deprecated
public BusinessSchedule getBusinessDay(final String date) {
return calendar.getBusinessDay(date);
}
@Override
@Deprecated
public BusinessSchedule getBusinessDay(final LocalDate date) {
return calendar.getBusinessDay(date);
}
@Override
public BusinessSchedule getBusinessSchedule(final Instant time) {
return calendar.getBusinessSchedule(time);
}
@Override
public BusinessSchedule getBusinessSchedule(final String date) {
return calendar.getBusinessSchedule(date);
}
@Override
public BusinessSchedule getBusinessSchedule(final LocalDate date) {
return calendar.getBusinessSchedule(date);
}
@Override
public long diffBusinessNanos(final Instant start, final Instant end) {
return calendar.diffBusinessNanos(start, end);
}
@Override
public double diffBusinessYear(final Instant startTime, final Instant endTime) {
return calendar.diffBusinessYear(startTime, endTime);
}
@Override
public String toString() {
return calendar.toString();
}
@Override
public boolean equals(Object obj) {
return calendar.equals(obj);
}
@Override
public int hashCode() {
return calendar.hashCode();
}
////////////////////////////////// NonBusinessDay methods //////////////////////////////////
@Override
public String previousNonBusinessDay() {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String previousNonBusinessDay(int days) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String previousNonBusinessDay(Instant time) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String previousNonBusinessDay(Instant time, int days) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String previousNonBusinessDay(String date) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String previousNonBusinessDay(String date, int days) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String nextNonBusinessDay() {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String nextNonBusinessDay(int days) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String nextNonBusinessDay(Instant time) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String nextNonBusinessDay(Instant time, int days) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String nextNonBusinessDay(String date) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String nextNonBusinessDay(String date, int days) {
throw new UnsupportedOperationException("Calendar has no non-business days.");
}
@Override
public String[] nonBusinessDaysInRange(Instant start, Instant end) {
return new String[0];
}
@Override
public String[] nonBusinessDaysInRange(String start, String end) {
return new String[0];
}
@Override
public long diffNonBusinessNanos(Instant start, Instant end) {
return 0;
}
@Override
public double diffNonBusinessDay(Instant start, Instant end) {
return 0;
}
@Override
public int numberOfNonBusinessDays(Instant start, Instant end) {
return 0;
}
@Override
public int numberOfNonBusinessDays(Instant start, Instant end, boolean endInclusive) {
return 0;
}
@Override
public int numberOfNonBusinessDays(String start, String end) {
return 0;
}
@Override
public int numberOfNonBusinessDays(String start, String end, boolean endInclusive) {
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy