de.focus_shift.jollyday.jackson.JacksonFixedWeekdayBetweenFixed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday-jackson Show documentation
Show all versions of jollyday-jackson Show documentation
Jackson based jollyday implementation
The newest version!
package de.focus_shift.jollyday.jackson;
import de.focus_shift.jollyday.core.HolidayType;
import de.focus_shift.jollyday.core.spi.Fixed;
import de.focus_shift.jollyday.core.spi.FixedWeekdayBetweenFixed;
import de.focus_shift.jollyday.core.spi.YearCycle;
import java.time.DayOfWeek;
import java.time.Year;
public class JacksonFixedWeekdayBetweenFixed implements FixedWeekdayBetweenFixed {
private final de.focus_shift.jollyday.jackson.mapping.FixedWeekdayBetweenFixed fixedWeekdayBetweenFixed;
public JacksonFixedWeekdayBetweenFixed(de.focus_shift.jollyday.jackson.mapping.FixedWeekdayBetweenFixed fixedWeekdayInMonth) {
this.fixedWeekdayBetweenFixed = fixedWeekdayInMonth;
}
@Override
public Fixed from() {
return new JacksonFixed(fixedWeekdayBetweenFixed.getFrom());
}
@Override
public Fixed to() {
return new JacksonFixed(fixedWeekdayBetweenFixed.getTo());
}
@Override
public DayOfWeek weekday() {
return DayOfWeek.valueOf(fixedWeekdayBetweenFixed.getWeekday().name());
}
@Override
public String descriptionPropertiesKey() {
return fixedWeekdayBetweenFixed.getDescriptionPropertiesKey();
}
@Override
public HolidayType officiality() {
return fixedWeekdayBetweenFixed.getLocalizedType() == null
? HolidayType.PUBLIC_HOLIDAY
: HolidayType.valueOf(fixedWeekdayBetweenFixed.getLocalizedType().name());
}
@Override
public Year validFrom() {
return fixedWeekdayBetweenFixed.getValidFrom() == null
? null
: Year.of(fixedWeekdayBetweenFixed.getValidFrom());
}
@Override
public Year validTo() {
return fixedWeekdayBetweenFixed.getValidTo() == null
? null
: Year.of(fixedWeekdayBetweenFixed.getValidTo());
}
@Override
public YearCycle cycle() {
return fixedWeekdayBetweenFixed.getEvery() == null
? YearCycle.EVERY_YEAR
: YearCycle.valueOf(fixedWeekdayBetweenFixed.getEvery().name());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy