The Javadoc was incorrect saying the method goal was to set the first
day of week depending on locale. Actual main goal - to set it in
independent way.
Also extended the doc to look more complete.
Change-Id: I2c82c774f4e245437b03c0bd0246a0361584d949
}
/**
- * Allow setting first day of week depending on Locale. Set to null if you
- * want first day of week depend on locale
+ * Allow setting first day of week independent of Locale. Set to null if you
+ * want first day of week being defined by the locale
*
* @since 7.6
* @param dayOfWeek
+ * any of java.util.Calendar.SUNDAY..java.util.Calendar.SATURDAY
+ * or null to revert to default first day of week by locale
*/
public void setFirstDayOfWeek(Integer dayOfWeek) {
int minimalSupported = java.util.Calendar.SUNDAY;