Added in API level 1

Time

public class Time
extends Date

java.lang.Object
   ↳ java.util.Date
     ↳ java.sql.Time


A thin wrapper around the java.util.Date class that allows the JDBC API to identify this as an SQL TIME value. The Time class adds formatting and parsing operations to support the JDBC escape syntax for time values.

The date components should be set to the "zero epoch" value of January 1, 1970 and should not be accessed.

Summary

Public constructors

Time(int hour, int minute, int second)

This constructor is deprecated. Use the constructor that takes a milliseconds value in place of this constructor

Time(long time)

Constructs a Time object using a milliseconds time value.

Public methods

int getDate()

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a date component.

int getDay()

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a day component.

int getMonth()

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a month component.

int getYear()

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a year component.

void setDate(int i)

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a date component.

void setMonth(int i)

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a month component.

void setTime(long time)

Sets a Time object using a milliseconds time value.

void setYear(int i)

This method is deprecated. This method is deprecated and should not be used because SQL TIME values do not have a year component.

String toString()

Formats a time in JDBC time escape format.

static Time valueOf(String s)

Converts a string in JDBC time escape format to a Time value.

Inherited methods