This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.sql
class Date

java.lang.Object extended by java.util.Date extended by java.sql.Date
All Implemented Interfaces:
Serializable, Cloneable, Comparable

Most common way to construct:

Date date = new Date();

Based on 25 examples


public class Date
extends Date

A thin wrapper around a millisecond value that allows JDBC to identify this as an SQL DATE value. A milliseconds value represents the number of milliseconds that have passed since January 1, 1970 00:00:00.000 GMT.

To conform with the definition of SQL DATE, the millisecond values wrapped by a java.sql.Date instance must be 'normalized' by setting the hours, minutes, seconds, and milliseconds to zero in the particular time zone with which the instance is associated.


Constructor Summary
Date(int year, int month, int day)

          Constructs a Date object initialized with the given year, month, and day.
Date(long date)

          Constructs a Date object using the given milliseconds time value.
 
Method Summary
 int

          This method is deprecated and should not be used because SQL Date values do not have a time component.
 int

          This method is deprecated and should not be used because SQL Date values do not have a time component.
 int

          This method is deprecated and should not be used because SQL Date values do not have a time component.
 void
setHours(int i)

          This method is deprecated and should not be used because SQL Date values do not have a time component.
 void
setMinutes(int i)

          This method is deprecated and should not be used because SQL Date values do not have a time component.
 void
setSeconds(int i)

          This method is deprecated and should not be used because SQL Date values do not have a time component.
 void
setTime(long date)

          Sets an existing Date object using the given milliseconds time value.
 String

          Formats a date in the date escape format yyyy-mm-dd.
static Date

          Converts a string in JDBC date escape format to a Date value.
 
Methods inherited from class java.util.Date
after, before, clone, compareTo, diff, equals, getDate, getDay, getHours, getMinutes, getMonth, getSeconds, getTime, getTimezoneOffset, getYear, hashCode, parse, setDate, setHours, setMinutes, setMonth, setSeconds, setTime, setYear, toGMTString, toLocaleString, toString, UTC
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Date

public Date(int year,
            int month,
            int day)
Constructs a Date object initialized with the given year, month, and day.

The result is undefined if a given argument is out of bounds.

Parameters:
year - the year minus 1900; must be 0 to 8099. (Note that 8099 is 9999 minus 1900.)
month - 0 to 11
day - 1 to 31

Date

public Date(long date)
Constructs a Date object using the given milliseconds time value. If the given milliseconds value contains time information, the driver will set the time components to the time in the default time zone (the time zone of the Java virtual machine running the application) that corresponds to zero GMT.

Parameters:
date - milliseconds since January 1, 1970, 00:00:00 GMT not to exceed the milliseconds representation for the year 8099. A negative number indicates the number of milliseconds before January 1, 1970, 00:00:00 GMT.
Method Detail

getHours

public int getHours()
This method is deprecated and should not be used because SQL Date values do not have a time component.

Overrides:
getHours in class Date

getMinutes

public int getMinutes()
This method is deprecated and should not be used because SQL Date values do not have a time component.

Overrides:
getMinutes in class Date

getSeconds

public int getSeconds()
This method is deprecated and should not be used because SQL Date values do not have a time component.

Overrides:
getSeconds in class Date

setHours

public void setHours(int i)
This method is deprecated and should not be used because SQL Date values do not have a time component.

Overrides:
setHours in class Date
Parameters:
i

setMinutes

public void setMinutes(int i)
This method is deprecated and should not be used because SQL Date values do not have a time component.

Overrides:
setMinutes in class Date
Parameters:
i

setSeconds

public void setSeconds(int i)
This method is deprecated and should not be used because SQL Date values do not have a time component.

Overrides:
setSeconds in class Date
Parameters:
i

setTime

public void setTime(long date)
Sets an existing Date object using the given milliseconds time value. If the given milliseconds value contains time information, the driver will set the time components to the time in the default time zone (the time zone of the Java virtual machine running the application) that corresponds to zero GMT.

Overrides:
setTime in class Date
Parameters:
date - milliseconds since January 1, 1970, 00:00:00 GMT not to exceed the milliseconds representation for the year 8099. A negative number indicates the number of milliseconds before January 1, 1970, 00:00:00 GMT.

toString

public String toString()
Formats a date in the date escape format yyyy-mm-dd.

Overrides:
toString in class Date
Returns:
a String in yyyy-mm-dd format

valueOf

public static Date valueOf(String s)
Converts a string in JDBC date escape format to a Date value.

Parameters:
s - a String object representing a date in in the format "yyyy-mm-dd"
Returns:
a java.sql.Date object representing the given date


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.