getTotalDays method
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;
}
Gets the number of days including fractional days.
@return the number of days.
double getTotalDays() {
return (((this.time / 1000.0) / 60.0) / 60.0) / 24.0;
}