I am using Java to interact with a MySQL database that contains Time type values. I can read this directly into Java Time objects by using the getTime() method from the ResultSet class.
How can I add a number of minutes to the current Time object?
I am not allowed to use Joda Time or other external libraries nor change the database types.
I have read everything I could find (this, this and many others) but none of the responses actually use Time objects.