All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.sql.Time

java.lang.Object
    |
    +----java.util.Date
            |
            +----java.sql.Time

public class Time
extends Date

This class is a thin wrapper around java.util.Date that allows JDBC to identify this as a SQL TIME value. It adds formatting and parsing operations to support the JDBC escape syntax for time values.


Constructor Index

 o Time(int, int, int)
Construct a Time Object
 o Time(long)
Construct a Time using a milliseconds time value

Method Index

 o getDate()
Deprecated.
 o getDay()
Deprecated.
 o getMonth()
Deprecated.
 o getYear()
Deprecated.
 o setDate(int)
Deprecated.
 o setMonth(int)
Deprecated.
 o setTime(long)
Set a Time using a milliseconds time value
 o setYear(int)
Deprecated.
 o toString()
Format a time in JDBC date escape format
 o valueOf(String)
Convert a string in JDBC time escape format to a Time value

Constructors

 o Time
public Time(int hour,
            int minute,
            int second)
Construct a Time Object

Parameters:
hour - 0 to 23
minute - 0 to 59
second - 0 to 59
 o Time
public Time(long time)
Construct a Time using a milliseconds time value

Parameters:
time - milliseconds since January 1, 1970, 00:00:00 GMT

Methods

 o setTime
public void setTime(long time)
Set a Time using a milliseconds time value

Parameters:
time - milliseconds since January 1, 1970, 00:00:00 GMT
Overrides:
setTime in class Date
 o valueOf
public static Time valueOf(String s)
Convert a string in JDBC time escape format to a Time value

Parameters:
s - time in format "hh:mm:ss"
Returns:
corresponding Time
 o toString
public String toString()
Format a time in JDBC date escape format

Returns:
a String in hh:mm:ss format
Overrides:
toString in class Date
 o getYear
public int getYear()
Note: getYear() is deprecated.

Overrides:
getYear in class Date
 o getMonth
public int getMonth()
Note: getMonth() is deprecated.

Overrides:
getMonth in class Date
 o getDay
public int getDay()
Note: getDay() is deprecated.

Overrides:
getDay in class Date
 o getDate
public int getDate()
Note: getDate() is deprecated.

Overrides:
getDate in class Date
 o setYear
public void setYear(int i)
Note: setYear() is deprecated.

Overrides:
setYear in class Date
 o setMonth
public void setMonth(int i)
Note: setMonth() is deprecated.

Overrides:
setMonth in class Date
 o setDate
public void setDate(int i)
Note: setDate() is deprecated.

Overrides:
setDate in class Date

All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature