getTotalDays method

double getTotalDays()

Gets the number of days including fractional days.

@return the number of days.

Implementation

double getTotalDays() {
  return (((this.time / 1000.0) / 60.0) / 60.0) / 24.0;
}