Panel | ||
---|---|---|
| ||
Useful methods frequently used in the system concerning date, SQL and metadata handling. What does this section cover?
|
...
Date handling methods can be found in com.crm.framework.util.DateUtil class.
Handling Java Dates
Expand | ||
---|---|---|
| ||
truncate( |
...
Date date) method returns the date rounded to the day with a time of 00:00:00:00. setEndOfDay( |
...
Date date) method returns the date rounded to the day with a time of 23:59:59:999.
| 1
|
Expand | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
getDateDiff( int calculationUnit, Date d1, Date d2 ) method returns the difference of the two dates in the given calculation unit.
| 2
|
Expand | ||
---|---|---|
| ||
add(Date date, int timeValue, |
...
UnitOfTime uot) |
...
method adds the given number(time value) of units to the given date.
Alternatively, any of the following methods can be used if the unit of time is known and not given. addYears(Date date, int numberOfYears) method adds the given number of years to the given date. addMonths(Date date, int numberOfMonths) method adds the given number of months to the given date. addWeeks(Date date, int numberOfWeeks) method adds the given number of weeks to the given date. addDays(Date date, int numberOfDays) |
...
method adds the given number of days to the given date. addHours(Date date, int numberOfHours) method adds the given number of hours to the given date. addMinutes(Date date, int numberOfMinutes) method adds the given number |
...
of minutesto the given date. addSeconds(Date date, int numberOfSeconds) method adds the given number of seconds to the given date. |
Handling SQL Dates
...
title | Example 3 |
---|
...
SQL Handling Methods
Metadata Handling Methods
...