A JDBC Timestamp
. For documentation of this class, see java.sql.Timestamp
.
Methods
Method | Return type | Brief description |
---|---|---|
after(when) | Boolean | For documentation of this method, see java.sql.Timestamp#after(java.sql.Timestamp) . |
before(when) | Boolean | For documentation of this method, see java.sql.Timestamp#before(java.sql.Timestamp) . |
getDate() | Integer | For documentation of this method, see java.sql.Timestamp#getDate() . |
getHours() | Integer | For documentation of this method, see java.sql.Timestamp#getHours() . |
getMinutes() | Integer | For documentation of this method, see java.sql.Timestamp#getMinutes() . |
getMonth() | Integer | For documentation of this method, see java.sql.Timestamp#getMonth() . |
getNanos() | Integer | For documentation of this method, see java.sql.Timestamp#getNanos() . |
getSeconds() | Integer | For documentation of this method, see java.sql.Timestamp#getSeconds() . |
getTime() | Integer | For documentation of this method, see java.sql.Timestamp#getTime() . |
getYear() | Integer | For documentation of this method, see java.sql.Timestamp#getYear() . |
setDate(date) | void | For documentation of this method, see java.sql.Timestamp#setDate(int) . |
setHours(hours) | void | For documentation of this method, see java.sql.Timestamp#setHours(int) . |
setMinutes(minutes) | void | For documentation of this method, see java.sql.Timestamp#setMinutes(int) . |
setMonth(month) | void | For documentation of this method, see java.sql.Timestamp#setMonth(int) . |
setNanos(nanoseconds) | void | For documentation of this method, see java.sql.Timestamp#setNanos(int) . |
setSeconds(seconds) | void | For documentation of this method, see java.sql.Timestamp#setSeconds(int) . |
setTime(milliseconds) | void | For documentation of this method, see java.sql.Timestamp#setTime(long) . |
setYear(year) | void | For documentation of this method, see java.sql.Timestamp#setYear(int) . |
Detailed documentation
after(when)
For documentation of this method, see java.sql.Timestamp#after(java.sql.Timestamp)
.
Parameters
Name | Type | Description |
---|---|---|
when | JdbcTimestamp |
Return
Boolean
before(when)
For documentation of this method, see java.sql.Timestamp#before(java.sql.Timestamp)
.
Parameters
Name | Type | Description |
---|---|---|
when | JdbcTimestamp |
Return
Boolean
setDate(date)
For documentation of this method, see java.sql.Timestamp#setDate(int)
.
Parameters
Name | Type | Description |
---|---|---|
date | Integer |
setHours(hours)
For documentation of this method, see java.sql.Timestamp#setHours(int)
.
Parameters
Name | Type | Description |
---|---|---|
hours | Integer |
setMinutes(minutes)
For documentation of this method, see java.sql.Timestamp#setMinutes(int)
.
Parameters
Name | Type | Description |
---|---|---|
minutes | Integer |
setMonth(month)
For documentation of this method, see java.sql.Timestamp#setMonth(int)
.
Parameters
Name | Type | Description |
---|---|---|
month | Integer |
setNanos(nanoseconds)
For documentation of this method, see java.sql.Timestamp#setNanos(int)
.
Parameters
Name | Type | Description |
---|---|---|
nanoseconds | Integer |
setSeconds(seconds)
For documentation of this method, see java.sql.Timestamp#setSeconds(int)
.
Parameters
Name | Type | Description |
---|---|---|
seconds | Integer |
setTime(milliseconds)
For documentation of this method, see java.sql.Timestamp#setTime(long)
.
Parameters
Name | Type | Description |
---|---|---|
milliseconds | Integer |
setYear(year)
For documentation of this method, see java.sql.Timestamp#setYear(int)
.
Parameters
Name | Type | Description |
---|---|---|
year | Integer |