/**
  * Gets the minimal date supported by this {@link DatePicker} in milliseconds since January 1,
  * 1970 00:00:00 in {@link TimeZone#getDefault()} time zone.
  *
  * <p>Note: The default minimal date is 01/01/1900.
  *
  * <p>
  *
  * @return The minimal supported date.
  */
 public long getMinDate() {
   return mDelegate.getMinDate().getTimeInMillis();
 }