setTime(long time) Sets the time for this Time object to the supplied milliseconds value.
Parameters: time - A time value expressed as milliseconds since the Epoch.Negative values are milliseconds before the Epoch.
Constructs a Time object using a supplied time specified in milliseconds
Parameters: theTime - a Time specified in milliseconds since the Epoch (January 1st1970, 00:00:00.000)
Sets the time for this Time object to the supplied milliseconds value.
Parameters: time - A time value expressed as milliseconds since the Epoch.Negative values are milliseconds before the Epoch. The Epochis January 1 1970, 00:00:00.000
Creates a Time object from a String holding a time represented in JDBC
escape format: hh:mm:ss.
An exception occurs if the input string is not in the form of a time in
JDBC escape format.
Parameters: timeString - A String representing the time value in JDBC escape format:hh:mm:ss The Time object set to a time corresponding to the given time throws: IllegalArgumentException - if the supplied time string is not in JDBC escape format.