Java Doc for Timestamp.java in  » 6.0-JDK-Core » sql » java » sql » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » sql » java.sql 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.util.Date
      java.sql.Timestamp

Timestamp
public class Timestamp extends java.util.Date (Code)

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 fractional seconds value, by allowing the specification of fractional seconds to a precision of nanoseconds. A Timestamp also provides formatting and parsing operations to support the JDBC escape syntax for timestamp values.

The precision of a Timestamp object is calculated to be either:

  • 19 , which is the number of characters in yyyy-mm-dd hh:mm:ss
  • 20 + s , which is the number of characters in the yyyy-mm-dd hh:mm:ss.[fff...] and s represents the scale of the given Timestamp, its fractional seconds precision.

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 an object that isn't an instance of java.sql.Timestamp, 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.



Field Summary
final static  longserialVersionUID
    

Constructor Summary
public  Timestamp(int year, int month, int date, int hour, int minute, int second, int nano)
     Constructs a Timestamp object initialized with the given values.
public  Timestamp(long time)
     Constructs a Timestamp object using a milliseconds time value.

Method Summary
public  booleanafter(Timestamp ts)
     Indicates whether this Timestamp object is later than the given Timestamp object.
public  booleanbefore(Timestamp ts)
     Indicates whether this Timestamp object is earlier than the given Timestamp object.
public  intcompareTo(Timestamp ts)
     Compares this Timestamp object to the given Timestamp object.
public  intcompareTo(java.util.Date o)
     Compares this Timestamp object to the given Date, which must be a Timestamp object.
public  booleanequals(Timestamp ts)
     Tests to see if this Timestamp object is equal to the given Timestamp object.
public  booleanequals(java.lang.Object ts)
     Tests to see if this Timestamp object is equal to the given object.
public  intgetNanos()
     Gets this Timestamp object's nanos value.
public  longgetTime()
     Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Timestamp object.
public  voidsetNanos(int n)
     Sets this Timestamp object's nanos field to the given value.
public  voidsetTime(long time)
     Sets this Timestamp object to represent a point in time that is time milliseconds after January 1, 1970 00:00:00 GMT.
public  StringtoString()
     Formats a timestamp in JDBC timestamp escape format.
public static  TimestampvalueOf(String s)
     Converts a String object in JDBC timestamp escape format to a Timestamp value.
Parameters:
  s - timestamp in format yyyy-mm-dd hh:mm:ss[.f...].

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
Timestamp
public Timestamp(int year, int month, int date, int hour, int minute, int second, int nano)(Code)
Constructs a Timestamp object initialized with the given values.
Parameters:
  year - the year minus 1900
Parameters:
  month - 0 to 11
Parameters:
  date - 1 to 31
Parameters:
  hour - 0 to 23
Parameters:
  minute - 0 to 59
Parameters:
  second - 0 to 59
Parameters:
  nano - 0 to 999,999,999
exception:
  IllegalArgumentException - if the nano argument is out of bounds



Timestamp
public Timestamp(long time)(Code)
Constructs a Timestamp object using a milliseconds time value. The integral seconds are stored in the underlying date value; the fractional seconds are stored in the nanos field of the Timestamp object.
Parameters:
  time - milliseconds since January 1, 1970, 00:00:00 GMT.A negative number is the number of milliseconds beforeJanuary 1, 1970, 00:00:00 GMT.
See Also:   java.util.Calendar
See Also:   




Method Detail
after
public boolean after(Timestamp ts)(Code)
Indicates whether this Timestamp object is later than the given Timestamp object.
Parameters:
  ts - the Timestamp value to compare with true if this Timestamp object is later;false otherwise



before
public boolean before(Timestamp ts)(Code)
Indicates whether this Timestamp object is earlier than the given Timestamp object.
Parameters:
  ts - the Timestamp value to compare with true if this Timestamp object is earlier;false otherwise



compareTo
public int compareTo(Timestamp ts)(Code)
Compares this Timestamp object to the given Timestamp object.
Parameters:
  ts - the Timestamp object to be compared tothis Timestamp object the value 0 if the two Timestampobjects are equal; a value less than 0 if this Timestamp object is before the given argument;and a value greater than 0 if this Timestamp object is after the given argument.
since:
   1.4



compareTo
public int compareTo(java.util.Date o)(Code)
Compares this Timestamp object to the given Date, which must be a Timestamp object. If the argument is not a Timestamp object, this method throws a ClassCastException object. (Timestamp objects are comparable only to other Timestamp objects.)
Parameters:
  o - the Date to be compared, which must be aTimestamp object the value 0 if this Timestamp objectand the given object are equal; a value less than 0 if this Timestamp object is before the given argument;and a value greater than 0 if this Timestamp object is after the given argument.
since:
   1.5



equals
public boolean equals(Timestamp ts)(Code)
Tests to see if this Timestamp object is equal to the given Timestamp object.
Parameters:
  ts - the Timestamp value to compare with true if the given Timestampobject is equal to this Timestamp object;false otherwise



equals
public boolean equals(java.lang.Object ts)(Code)
Tests to see if this Timestamp object is equal to the given object. This version of the method equals has been added to fix the incorrect signature of Timestamp.equals(Timestamp) and to preserve backward compatibility with existing class files. Note: This method is not symmetric with respect to the equals(Object) method in the base class.
Parameters:
  ts - the Object value to compare with true if the given Object is an instanceof a Timestamp thatis equal to this Timestamp object;false otherwise



getNanos
public int getNanos()(Code)
Gets this Timestamp object's nanos value. this Timestamp object's fractional seconds component
See Also:   Timestamp.setNanos



getTime
public long getTime()(Code)
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Timestamp object. the number of milliseconds since January 1, 1970, 00:00:00 GMTrepresented by this date.
See Also:   Timestamp.setTime



setNanos
public void setNanos(int n)(Code)
Sets this Timestamp object's nanos field to the given value.
Parameters:
  n - the new fractional seconds component
exception:
  java.lang.IllegalArgumentException - if the given argumentis greater than 999999999 or less than 0
See Also:   Timestamp.getNanos



setTime
public void setTime(long time)(Code)
Sets this Timestamp object 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:   Timestamp.getTime
See Also:   Timestamp.Timestamp(long time)
See Also:   java.util.Calendar



toString
public String toString()(Code)
Formats a timestamp in JDBC timestamp escape format. yyyy-mm-dd hh:mm:ss.fffffffff, where ffffffffff indicates nanoseconds.

a String object inyyyy-mm-dd hh:mm:ss.fffffffff format




valueOf
public static Timestamp valueOf(String s)(Code)
Converts a String object in JDBC timestamp escape format to a Timestamp value.
Parameters:
  s - timestamp in format yyyy-mm-dd hh:mm:ss[.f...]. Thefractional seconds may be omitted. corresponding Timestamp value
exception:
  java.lang.IllegalArgumentException - if the given argumentdoes not have the format yyyy-mm-dd hh:mm:ss[.f...]



Methods inherited from java.util.Date
public static long UTC(int year, int month, int date, int hrs, int min, int sec)(Code)(Java Doc)
public boolean after(Date when)(Code)(Java Doc)
public boolean before(Date when)(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
public int compareTo(Date anotherDate)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public int getDate()(Code)(Java Doc)
public int getDay()(Code)(Java Doc)
public int getHours()(Code)(Java Doc)
public int getMinutes()(Code)(Java Doc)
public int getMonth()(Code)(Java Doc)
public int getSeconds()(Code)(Java Doc)
public long getTime()(Code)(Java Doc)
public int getTimezoneOffset()(Code)(Java Doc)
public int getYear()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public static long parse(String s)(Code)(Java Doc)
public void setDate(int date)(Code)(Java Doc)
public void setHours(int hours)(Code)(Java Doc)
public void setMinutes(int minutes)(Code)(Java Doc)
public void setMonth(int month)(Code)(Java Doc)
public void setSeconds(int seconds)(Code)(Java Doc)
public void setTime(long time)(Code)(Java Doc)
public void setYear(int year)(Code)(Java Doc)
public String toGMTString()(Code)(Java Doc)
public String toLocaleString()(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.