69. Getting the first and last day of a quarter Let’s assume that we represent the first and last day of a quarter via this simple class: public final class Quarter { private final Date firstDay; private final Date lastDay; …} Next, we have a java.util.Date and we want the first and the last day […]