Please suggest if there is an API support to determine if my time is between 2 LocalTime
instances, or suggest a different approach.
I have this entity:
class Place {
LocalTime startDay;
LocalTime endDay;
}
which stores the working day start and end time, i.e. from '9:00' till '17:00', or a nightclub from '22:00' till "5:00".
I need to implement a Place.isOpen()
method that determines if the place is open at a given time.
A simple isBefore
/isAfter
does not work here, because we also need to determine if the end time is on the next day.
Of course, we can compare the start and end times and make a decision, but I want something without additional logic, just a simple between()
call. If LocalTime
is not sufficient for this purpose, please suggest other.