setActualWeekOfYearMinimum()
Sets the value of the Week of Year
field to its actual minimum,
taking into consideration the given time value and the current values of the
getFirstDayOfWeek
, getMinimalDaysInFirstWeek
, and
setTimeZone
methods.
Syntax
Calendar setActualWeekOfYearMinimum()
Usage
For example, set the minimum value of the
Week of Year
field by
calling:Calendar.fromDate(Date.parseString("05/08/1999","mm/dd/yyyy")).setActualWeekOfYearMinimum().toDate().format("mm/dd/yyyy")
This
example populates a Word Box. To achieve the same goal and populate a Date
box,
call:Calendar.fromDate(Date.parseString("07/05/1999","mm/dd/yyyy")).setActualWeekOfYearMinimum().toDate()