getHour method

String getHour()

It writes the full minute for any string format

Implementation

String getHour(){
  return this.hour == 0 ? "00" : this.hour.toString();
}