Class Date
java.lang.Object
java.util.Date
java.sql.Date
- All Implemented Interfaces:
Serializable, Cloneable, Comparable<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.
- Since:
- 1.1
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetHours()Deprecated.intDeprecated.intDeprecated.voidsetHours(int i) Deprecated.voidsetMinutes(int i) Deprecated.voidsetSeconds(int i) Deprecated.voidsetTime(long date) Sets an existingDateobject using the given milliseconds time value.This method always throws an UnsupportedOperationException and should not be used because SQLDatevalues do not have a time component.Creates aLocalDateinstance using the year, month and day from thisDateobject.toString()Formats a date in the date escape format yyyy-mm-dd.static DateConverts a string in JDBC date escape format to aDatevalue.static DateObtains an instance ofDatefrom aLocalDateobject with the same year, month and day of month value as the givenLocalDate.Methods declared in class Date
after, before, clone, compareTo, equals, from, getDate, getDay, getMonth, getTime, getTimezoneOffset, getYear, hashCode, parse, setDate, setMonth, setYear, toGMTString, toLocaleString, UTCModifier and TypeMethodDescriptionbooleanTests if this date is after the specified date.booleanTests if this date is before the specified date.clone()Return a copy of this object.intCompares two Dates for ordering.booleanCompares two dates for equality.static DateObtains an instance ofDatefrom anInstantobject.intgetDate()Deprecated.As of JDK version 1.1, replaced byCalendar.get(Calendar.DAY_OF_MONTH).intgetDay()Deprecated.As of JDK version 1.1, replaced byCalendar.get(Calendar.DAY_OF_WEEK).intgetMonth()Deprecated.As of JDK version 1.1, replaced byCalendar.get(Calendar.MONTH).longgetTime()Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by thisDateobject.intDeprecated.As of JDK version 1.1, replaced by-(Calendar.get(Calendar.ZONE_OFFSET) + Calendar.get(Calendar.DST_OFFSET)) / (60 * 1000).intgetYear()Deprecated.As of JDK version 1.1, replaced byCalendar.get(Calendar.YEAR) - 1900.inthashCode()Returns a hash code value for this object.static longDeprecated.As of JDK version 1.1, replaced byDateFormat.parse(String s).voidsetDate(int date) Deprecated.As of JDK version 1.1, replaced byCalendar.set(Calendar.DAY_OF_MONTH, int date).voidsetMonth(int month) Deprecated.As of JDK version 1.1, replaced byCalendar.set(Calendar.MONTH, int month).voidsetYear(int year) Deprecated.As of JDK version 1.1, replaced byCalendar.set(Calendar.YEAR, year + 1900).Deprecated.As of JDK version 1.1, replaced byDateFormat.format(Date date), using a GMTTimeZone.Deprecated.As of JDK version 1.1, replaced byDateFormat.format(Date date).static longUTC(int year, int month, int date, int hrs, int min, int sec) Deprecated.As of JDK version 1.1, replaced byCalendar.set(year + 1900, month, date, hrs, min, sec)orGregorianCalendar(year + 1900, month, date, hrs, min, sec), using a UTCTimeZone, followed byCalendar.getTime().getTime().Methods declared in class Object
finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
Date
Deprecated.instead use the constructorDate(long date)Constructs aDateobject 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 11day- 1 to 31
-
Date
public Date(long date) Constructs aDateobject 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 Details
-
setTime
public void setTime(long date) Sets an existingDateobject 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. -
valueOf
Converts a string in JDBC date escape format to aDatevalue.- Parameters:
s- aStringobject representing a date in in the format "yyyy-[m]m-[d]d". The leading zero formmandddmay also be omitted.- Returns:
- a
java.sql.Dateobject representing the given date - Throws:
IllegalArgumentException- if the date given is not in the JDBC date escape format (yyyy-[m]m-[d]d)
-
toString
-
getHours
Deprecated.This method is deprecated and should not be used because SQL Date values do not have a time component.- Overrides:
getHoursin classDate- Returns:
- the hour represented by this date.
- Throws:
IllegalArgumentException- if this method is invoked- See Also:
-
getMinutes
Deprecated.This method is deprecated and should not be used because SQL Date values do not have a time component.- Overrides:
getMinutesin classDate- Returns:
- the number of minutes past the hour represented by this date.
- Throws:
IllegalArgumentException- if this method is invoked- See Also:
-
getSeconds
Deprecated.This method is deprecated and should not be used because SQL Date values do not have a time component.- Overrides:
getSecondsin classDate- Returns:
- the number of seconds past the minute represented by this date.
- Throws:
IllegalArgumentException- if this method is invoked- See Also:
-
setHours
Deprecated.This method is deprecated and should not be used because SQL Date values do not have a time component.- Overrides:
setHoursin classDate- Parameters:
i- the hour value.- Throws:
IllegalArgumentException- if this method is invoked- See Also:
-
setMinutes
Deprecated.This method is deprecated and should not be used because SQL Date values do not have a time component.- Overrides:
setMinutesin classDate- Parameters:
i- the value of the minutes.- Throws:
IllegalArgumentException- if this method is invoked- See Also:
-
setSeconds
Deprecated.This method is deprecated and should not be used because SQL Date values do not have a time component.- Overrides:
setSecondsin classDate- Parameters:
i- the seconds value.- Throws:
IllegalArgumentException- if this method is invoked- See Also:
-
valueOf
Obtains an instance ofDatefrom aLocalDateobject with the same year, month and day of month value as the givenLocalDate.The provided
LocalDateis interpreted as the local date in the local time zone.- Parameters:
date- aLocalDateto convert- Returns:
- a
Dateobject - Throws:
NullPointerException- ifdateis null- Since:
- 1.8
-
toLocalDate
Creates aLocalDateinstance using the year, month and day from thisDateobject.- Returns:
- a
LocalDateobject representing the same date value - Since:
- 1.8
-
toInstant
This method always throws an UnsupportedOperationException and should not be used because SQLDatevalues do not have a time component.- Overrides:
toInstantin classDate- Returns:
- an instant representing the same point on the time-line as
this
Dateobject - Throws:
UnsupportedOperationException- if this method is invoked
-
Date(long date)