Package com.jidesoft.utils
Class DateUtils
java.lang.Object
com.jidesoft.utils.DateUtils
DateUtils contains many useful methods related to Date and Calendar.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic CalendaradjustDate(Calendar calendar, int differenceInDay) Adjusts the Calendar to several days before or after the current date.static booleanChecks if the calendar object is in the specified month, regardless of the year.static booleanisAtQuarter(Calendar cal, int quarter) Checks if the calendar object is in the specified quarter, regardless of the year.static booleanisLastMonth(Calendar cal) Checks if the calendar object is last month.static booleanisLastQuarter(Calendar cal) Checks if the calendar object is last quarter.static booleanisLastWeek(Calendar cal) Checks if the calendar object is last week.static booleanisLastYear(Calendar cal) Checks if the calendar object is last year.static booleanisNextMonth(Calendar cal) Checks if the calendar object is next month.static booleanisNextQuarter(Calendar cal) Checks if the calendar object is next quarter.static booleanisNextWeek(Calendar cal) Checks if the calendar object is next week.static booleanisNextYear(Calendar cal) Checks if the calendar object is next year.static booleanisThisMonth(Calendar cal) Checks if the calendar object is same month as today.static booleanisThisQuarter(Calendar cal) Checks if the calendar object is same quarter as today.static booleanisThisWeek(Calendar cal) Checks if the calendar object is same week as today.static booleanisThisYear(Calendar cal) Checks if the calendar object is same year as today.static booleanChecks if the calendar object is same date as today.static booleanisTomorrow(Calendar cal) Checks if the calendar object is same date as tomorrow.static booleanisYesterday(Calendar cal) Checks if the calendar object is same date as yesterday.static DateDeprecated.static CalendarmaxCalendars(List<Calendar> calendars) Returns the maximum Calendar in the Calendar list.static DateReturns the maximum Date in the Date list.static DateDeprecated.replaced byminDates(java.util.List)to comply with the new compilation regulation.static CalendarminCalendars(List<Calendar> calendars) Returns the minimum Calendar in the Calendar list.static DateReturns the minimum Date in the Date list.static TimeRangerangeCalendars(List<Calendar> calendars) Returns the range of Calendars in the Calendar list.static TimeRangerangeDates(List<Date> dates) Returns the range of date in the Calendar list.
-
Constructor Details
-
DateUtils
public DateUtils()
-
-
Method Details
-
isToday
Checks if the calendar object is same date as today.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same date as today.
-
isThisWeek
Checks if the calendar object is same week as today.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same week as today.
-
isThisMonth
Checks if the calendar object is same month as today.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same month as today.
-
isThisQuarter
Checks if the calendar object is same quarter as today.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same quarter as today.
-
isThisYear
Checks if the calendar object is same year as today.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same year as today.
-
isYesterday
Checks if the calendar object is same date as yesterday.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same date as yesterday.
-
isLastWeek
Checks if the calendar object is last week.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is last week.
-
isLastMonth
Checks if the calendar object is last month.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is last month.
-
isLastQuarter
Checks if the calendar object is last quarter.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is last quarter.
-
isLastYear
Checks if the calendar object is last year.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is last year.
-
isTomorrow
Checks if the calendar object is same date as tomorrow.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is the same date as tomorrow.
-
isNextWeek
Checks if the calendar object is next week.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is next week.
-
isNextMonth
Checks if the calendar object is next month.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is next month.
-
isNextQuarter
Checks if the calendar object is next quarter.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is next quarter.
-
isNextYear
Checks if the calendar object is next year.- Parameters:
cal- the calendar object- Returns:
- true if the calendar object is next year.
-
isAtMonth
Checks if the calendar object is in the specified month, regardless of the year.- Parameters:
cal- the calendar object.month- the month, starting from 0 for January. You can use the value defined in Calendar such as Calendar.JANUARY, Calendar.FEBRUARY, etc.- Returns:
- true if the calendar object is the specified month.
-
isAtQuarter
Checks if the calendar object is in the specified quarter, regardless of the year.- Parameters:
cal- the calendar object.quarter- the quarter, starting from 1 for the first quarter (including January, February, and March).- Returns:
- true if the calendar object is the specified quarter.
-
adjustDate
Adjusts the Calendar to several days before or after the current date.- Parameters:
calendar- the Calendar object to be adjusted.differenceInDay- the difference in days. It accepts both position and negative number.- Returns:
- the calendar after the adjustment. It should always be the same instance as the calendar parameter.
-
min
Deprecated.replaced byminDates(java.util.List)to comply with the new compilation regulation. We have to delete the min(List) in releases earlier than 2.9.4 due to the same reason. Returns the minimum Date in the Date list.- Parameters:
dates- the list of Date to calculate the minimum.- Returns:
- the minimum date in the Date list.
-
max
Deprecated.replaced bymaxDates(java.util.List)to comply with the new compilation regulation. We have to delete the max(List) in releases earlier than 2.9.4 due to the same reason. Returns the maximum Date in the Date list.- Parameters:
dates- the list of Date to calculate the maximum.- Returns:
- the maximum date in the Date list.
-
minDates
Returns the minimum Date in the Date list.- Parameters:
dates- the list of Date to calculate the minimum.- Returns:
- the minimum date in the Date list.
-
maxDates
Returns the maximum Date in the Date list.- Parameters:
dates- the list of Date to calculate the maximum.- Returns:
- the maximum date in the Date list.
-
rangeDates
Returns the range of date in the Calendar list.- Parameters:
dates- the list of Dates to calculate the maximum.- Returns:
- the range date in the Calendar list.
-
minCalendars
Returns the minimum Calendar in the Calendar list.- Parameters:
calendars- the list of Calendar to calculate the minimum.- Returns:
- the minimum calendar in the Calendar list.
-
maxCalendars
Returns the maximum Calendar in the Calendar list.- Parameters:
calendars- the list of Calendar to calculate the maximum.- Returns:
- the maximum calendar in the Calendar list.
-
rangeCalendars
Returns the range of Calendars in the Calendar list.- Parameters:
calendars- the list of Calendar to calculate the maximum.- Returns:
- the range of calendars in the Calendar list.
-
maxDates(java.util.List)to comply with the new compilation regulation.