/**
  * Gets the first day of week.
  *
  * @return The first day of the week conforming to the {@link CalendarView} APIs.
  * @see Calendar#SUNDAY
  * @see Calendar#MONDAY
  * @see Calendar#TUESDAY
  * @see Calendar#WEDNESDAY
  * @see Calendar#THURSDAY
  * @see Calendar#FRIDAY
  * @see Calendar#SATURDAY
  * @attr ref android.R.styleable#DatePicker_firstDayOfWeek
  */
 public int getFirstDayOfWeek() {
   return mDelegate.getFirstDayOfWeek();
 }