List of utility methods to do Month Offset Get
boolean | hasMonthPassed(int year, int month) has Month Passed Calendar now = Clock.getCalendarInstance();
return hasYearPassed(year)
|| normalizeYear(year) == now.get(Calendar.YEAR)
&& month < (now.get(Calendar.MONTH) + 1);
|