Last active
January 9, 2023 16:46
-
-
Save jeffscottbrown/c97dcb69768fcde6e05fe78854d67921 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.time.* | |
import static java.time.DayOfWeek.* | |
public class BusinessOperations { | |
List<DayOfWeek> weekendDays = [SUNDAY, SATURDAY] | |
LocalDate lastBusinessDay( LocalDate dateInMonth ) { | |
LocalDate lastDayOfMonth = dateInMonth.withDayOfMonth(dateInMonth.month.length(dateInMonth.leapYear)) | |
((lastDayOfMonth)..(lastDayOfMonth - 2)).find { | |
!(it.dayOfWeek in weekendDays) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment