new version prep

This commit is contained in:
2022-06-25 01:44:24 +02:00
parent a69bbb1e05
commit 8201b1d4e4
8 changed files with 59 additions and 2 deletions

View File

@ -1,5 +1,7 @@
package com.jens.automation2;
import androidx.annotation.NonNull;
import java.sql.Time;
public class TimeObject
@ -65,4 +67,12 @@ public class TimeObject
return ro;
}
@NonNull
@Override
public String toString()
{
Time time = Time.valueOf(this.getHours() + ":" + this.getMinutes() + ":" + this.getSeconds());
return time.toString();
}
}