Timestamp (Java 2 Platform SE 5.0)
java.sql
Class Timestamp
java.lang.Object java.util.Date java.sql.Timestamp
- All Implemented Interfaces:
- Serializable, Cloneable, Comparable<Date>
public class Timestamp
- extends Date
A thin wrapper around java.util.Date that allows
the JDBC API to identify this as an SQL TIMESTAMP value.
It adds the ability
to hold the SQL TIMESTAMP nanos value and provides formatting and
parsing operations to support the JDBC escape syntax for timestamp values.
Note: This type is a composite of a java.util.Date and a
separate nanoseconds value. Only integral seconds are stored in the
java.util.Date component. The fractional seconds - the nanos - are
separate. The Timestamp.equals(Object) method never returns
true when passed a value of type java.util.Date
because the nanos component of a date is unknown.
As a result, the Timestamp.equals(Object)
method is not symmetric with respect to the
java.util.Date.equals(Object)
method. Also, the hashcode method uses the underlying
java.util.Date
implementation and therefore does not include nanos in its computation.
Due to the differences between the Timestamp class
and the java.util.Date
class mentioned above, it is recommended that code not view
Timestamp values generically as an instance of
java.util.Date. The
inheritance relationship between Timestamp
and java.util.Date really
denotes implementation inheritance, and not type inheritance.
- See Also:
- Serialized Form
| Constructor Summary | |
|---|---|
Timestamp(int year,
int month,
int date,
int hour,
int minute,
int second,
int nano)
Deprecated. instead use the constructor Timestamp(long millis) |
|
Timestamp(long time)
Constructs a Timestamp object
using a milliseconds time value. |
|
| Method Summary | |
|---|---|
boolean |
after(Timestamp ts)
Indicates whether this Timestamp object is
later than the given Timestamp object. |
boolean |
before(Timestamp ts)
Indicates whether this Timestamp object is
earlier than the given Timestamp object. |
int |
compareTo(Date o)
Compares this Timestamp object to the given
Date, which must be a Timestamp
object. |
int |
compareTo(Timestamp ts)
Compares this Timestamp object to the given
Timestamp object. |
boolean |
equals(Object ts)
Tests to see if this Timestamp object is
equal to the given object. |
boolean |
equals(Timestamp ts)
Tests to see if this Timestamp object is
equal to the given Timestamp object. |
int |
getNanos()
Gets this Timestamp object's nanos value. |
long |
getTime()
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Timestamp object. |
void |
setNanos(int n)
Sets this Timestamp object's nanos field
to the given value. |
void |
setTime(long time)
Sets this Timestamp object to represent a point in time that is
time milliseconds after January 1, 1970 00:00:00 GMT. |
String |
toString()
Formats a timestamp in JDBC timestamp escape format. |
static Timestamp |
valueOf(String s)
Converts a String object in JDBC timestamp escape format to a
Timestamp value. |
| Methods inherited from class java.util.Date |
|---|
after, before, clone, getDate, getDay, getHours, getMinutes, getMonth, getSeconds, getTimezoneOffset, getYear, hashCode, parse, setDate, setHours, setMinutes, setMonth, setSeconds, setYear, toGMTString, toLocaleString, UTC |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
Timestamp
@Deprecated
public Timestamp(int year,
int month,
int date,
int hour,
int minute,
int second,
int nano)
- Deprecated. instead use the constructor
Timestamp(long millis) - Constructs a
Timestampobject initialized with the given values.- Parameters:
year- the year minus 1900month- 0 to 11date- 1 to 31hour- 0 to 23minute- 0 to 59second- 0 to 59nano- 0 to 999,999,999- Throws:
IllegalArgumentException- if the nano argument is out of bounds
Timestamp
public Timestamp(long time)
- Constructs a
Timestampobject using a milliseconds time value. The integral seconds are stored in the underlying date value; the fractional seconds are stored in thenanosfield of theTimestampobject.- Parameters:
time- milliseconds since January 1, 1970, 00:00:00 GMT. A negative number is the number of milliseconds before January 1, 1970, 00:00:00 GMT.- See Also:
for more information
| Method Detail |
|---|
setTime
public void setTime(long time)
- Sets this
Timestampobject to represent a point in time that is time milliseconds after January 1, 1970 00:00:00 GMT. - Parameters:
time- the number of milliseconds.- See Also:
getTime(),Timestamp(long time),for more information
getTime
public long getTime()
- Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT
represented by this
Timestampobject. - Returns:
- the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this date.
- See Also:
setTime(long)
valueOf
public static Timestamp valueOf(String s)
- Converts a
Stringobject in JDBC timestamp escape format to aTimestampvalue. - Parameters:
s- timestamp in formatyyyy-mm-dd hh:mm:ss.fffffffff- Returns:
- corresponding
Timestampvalue - Throws:
IllegalArgumentException- if the given argument does not have the formatyyyy-mm-dd hh:mm:ss.fffffffff
toString
public String toString()
- Formats a timestamp in JDBC timestamp escape format.
yyyy-mm-dd hh:mm:ss.fffffffff, whereffffffffffindicates nanoseconds.NOTE: To specify a timestamp for the class
java.text.SimpleDateFormat, use "yyyy.MM.dd" rather than "yyyy-mm-dd". In the context ofjava.text.SimpleDateFormat, "mm" indicates minutes rather than the month. Note thatjava.text.SimpleDateFormatdoes not allow for the nanoseconds component of aTimestampobject. For Example:Format Pattern Result -------------- ------ "yyyy.MM.dd G 'at' hh:mm:ss z" --> 2002.07.10 AD at 15:08:56 PDT
- Returns:
- a
Stringobject inyyyy-mm-dd hh:mm:ss.fffffffffformat - See Also:
Date.toLocaleString(),Date.toGMTString()
getNanos
public int getNanos()
- Gets this
Timestampobject'snanosvalue. - Returns:
- this
Timestampobject's fractional seconds component - See Also:
setNanos(int)
setNanos
public void setNanos(int n)
- Sets this
Timestampobject'snanosfield to the given value. - Parameters:
n- the new fractional seconds component- Throws:
IllegalArgumentException- if the given argument is greater than 999999999 or less than 0- See Also:
getNanos()
equals
public boolean equals(Timestamp ts)
- Tests to see if this
Timestampobject is equal to the givenTimestampobject. - Parameters:
ts- theTimestampvalue to compare with- Returns:
trueif the givenTimestampobject is equal to thisTimestampobject;falseotherwise
equals
public boolean equals(Object ts)
- Tests to see if this
Timestampobject is equal to the given object. This version of the methodequalshas been added to fix the incorrect signature ofTimestamp.equals(Timestamp)and to preserve backward compatibility with existing class files. Note: This method is not symmetric with respect to theequals(Object)method in the base class. - Parameters:
ts- theObjectvalue to compare with- Returns:
trueif the givenObjectinstance is equal to thisTimestampobject;falseotherwise- See Also:
Date.getTime()
before
public boolean before(Timestamp ts)
- Indicates whether this
Timestampobject is earlier than the givenTimestampobject. - Parameters:
ts- theTimestampvalue to compare with- Returns:
trueif thisTimestampobject is earlier;falseotherwise
after
public boolean after(Timestamp ts)
- Indicates whether this
Timestampobject is later than the givenTimestampobject. - Parameters:
ts- theTimestampvalue to compare with- Returns:
trueif thisTimestampobject is later;falseotherwise
compareTo
public int compareTo(Timestamp ts)
- Compares this
Timestampobject to the givenTimestampobject. - Parameters:
ts- theTimestampobject to be compared to thisTimestampobject- Returns:
- the value
0if the twoTimestampobjects are equal; a value less than0if thisTimestampobject is before the given argument; and a value greater than0if thisTimestampobject is after the given argument. - Since:
- 1.2
compareTo
public int compareTo(Date o)
- Compares this
Timestampobject to the givenDate, which must be aTimestampobject. If the argument is not aTimestampobject, this method throws aClassCastExceptionobject. (Timestampobjects are comparable only to otherTimestampobjects.) - Specified by:
compareToin interfaceComparable<Date>- Overrides:
compareToin classDate
- Parameters:
o- theDateto be compared, which must be aTimestampobject- Returns:
- the value
0if thisTimestampobject and the given object are equal; a value less than0if thisTimestampobject is before the given argument; and a value greater than0if thisTimestampobject is after the given argument. - Throws:
ClassCastException- if the argument is not aTimestampobject- Since:
- 1.5
Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.