Class JdbcTimestamp

JdbcTimestamp

A JDBC Timestamp. For documentation of this class, see java.sql.Timestamp .

Methods

MethodReturn typeBrief description
after(when)BooleanFor documentation of this method, see java.sql.Timestamp#after(Timestamp).
before(when)BooleanFor documentation of this method, see java.sql.Timestamp#before(Timestamp).
getDate()IntegerFor documentation of this method, see java.sql.Date#getDate().
getHours()IntegerFor documentation of this method, see java.sql.Date#getHours().
getMinutes()IntegerFor documentation of this method, see java.sql.Date#getMinutes().
getMonth()IntegerFor documentation of this method, see java.sql.Date#getMonth().
getNanos()IntegerFor documentation of this method, see java.sql.Timestamp#getNanos().
getSeconds()IntegerFor documentation of this method, see java.sql.Date#getSeconds().
getTime()IntegerFor documentation of this method, see java.sql.Timestamp#getTime().
getYear()IntegerFor documentation of this method, see java.sql.Date#getYear().
setDate(date)voidFor documentation of this method, see java.sql.Date#setDate(int).
setHours(hours)voidFor documentation of this method, see java.sql.Date#setHours(int).
setMinutes(minutes)voidFor documentation of this method, see java.sql.Date#setMinutes(int).
setMonth(month)voidFor documentation of this method, see java.sql.Date#setMonth(int).
setNanos(nanoseconds)voidFor documentation of this method, see java.sql.Timestamp#setNanos(int).
setSeconds(seconds)voidFor documentation of this method, see java.sql.Date#setSeconds(int).
setTime(milliseconds)voidFor documentation of this method, see java.sql.Timestamp#setTime(long).
setYear(year)voidFor documentation of this method, see java.sql.Date#setYear(int).

Detailed documentation

after(when)

For documentation of this method, see java.sql.Timestamp#after(Timestamp).

Parameters

NameTypeDescription
whenJdbcTimestampA timestamp to compare to.

Return

Booleantrue if and only if this timestampe is strictly later than the timestamp specified as a parameter; false otherwise.


before(when)

For documentation of this method, see java.sql.Timestamp#before(Timestamp).

Parameters

NameTypeDescription
whenJdbcTimestampA timestamp to compare to.

Return

Booleantrue if and only if this timestamp is strictly earlier than the timestamp specified as a parameter; false otherwise.


getDate()

For documentation of this method, see java.sql.Date#getDate().

Return

Integer — The day of the month represented by this timestamp. The value returned is between 1 and 31 representing the day of the month that contains or begins with the instant in time represented by this timestamp, as interpreted in the local time zone.


getHours()

For documentation of this method, see java.sql.Date#getHours().

Return

Integer — The hour represented by this object; the value is a number (0 through 23) representing the hour within the day that contains or begins with the instant in time represented by this object, as interpreted in the local time zone.


getMinutes()

For documentation of this method, see java.sql.Date#getMinutes().

Return

Integer — The minutes past the hour represented by this object, as interpreted in the local time zone. The value is a number between 0 through 59 inclusive.


getMonth()

For documentation of this method, see java.sql.Date#getMonth().

Return

Integer — The month that contains or begins with the instant in time represented by this timestamp. The value returned is between 0 and 11, with the value 0 representing January.


getNanos()

For documentation of this method, see java.sql.Timestamp#getNanos().

Return

Integer — This timestamp's fractional seconds value (nanoseconds).


getSeconds()

For documentation of this method, see java.sql.Date#getSeconds().

Return

Integer — The seconds past the minute represented by this object, as interpreted in the local time zone. The value is a number between 0 through 61 inclusive, whiere 60 and 61 are only possible for machines that take leap seconds into account.


getTime()

For documentation of this method, see java.sql.Timestamp#getTime().

Return

Integer — The number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this time object.


getYear()

For documentation of this method, see java.sql.Date#getYear().

Return

Integer — A value that is the result of subtracting 1900 from the year that contains or begins with the instant in time represented by this timestampe, as interpreted in the local time zone.


setDate(date)

For documentation of this method, see java.sql.Date#setDate(int).

Parameters

NameTypeDescription
dateIntegerThe day of month to set. This timestamp is updated to represent a point in time within the specified day of month, with the year, month, hour, minute, and second the same as before, as interpreted in the local time zone. If the date was April 30, for example, and the date is set to 31, then it is treated as if it were on May 1, because April has only 30 days.

setHours(hours)

For documentation of this method, see java.sql.Date#setHours(int).

Parameters

NameTypeDescription
hoursIntegerThe hour to set; this object is updated to represent a point in time within the specified hour of the day, with the year, month, date, minute, and second the same as before, as interpreted in the local time zone.

setMinutes(minutes)

For documentation of this method, see java.sql.Date#setMinutes(int).

Parameters

NameTypeDescription
minutesIntegerThe minutes to set; this object is updated to represent a point in time within the specified minute of the hour, with the year, month, date, hour, and second the same as before, as interpreted in the local time zone.

setMonth(month)

For documentation of this method, see java.sql.Date#setMonth(int).

Parameters

NameTypeDescription
monthIntegerThe month to set. This timestamp is updated to represent a point in time within the specified month, with the year, date, hour, minute, and second the same as before, as interpreted in the local time zone. If the date was October 31, for example, and the month is set to June, then the new date is treated as if it were on July 1, because June has only 30 days.

setNanos(nanoseconds)

For documentation of this method, see java.sql.Timestamp#setNanos(int).

Parameters

NameTypeDescription
nanosecondsIntegerThe new fractional seconds value.

setSeconds(seconds)

For documentation of this method, see java.sql.Date#setSeconds(int).

Parameters

NameTypeDescription
secondsIntegerThe seconds to set; this object is updated to represent a point in time within the specified second of the minute, with the year, month, date, hour, and minute the same as before, as interpreted in the local time zone.

setTime(milliseconds)

For documentation of this method, see java.sql.Timestamp#setTime(long).

Parameters

NameTypeDescription
millisecondsIntegerThe time value to set. The value is milliseconds since January 1, 1970, 00:00:00 GMT.

setYear(year)

For documentation of this method, see java.sql.Date#setYear(int).

Parameters

NameTypeDescription
yearIntegerThe year value to set; the timestamp's year is set to this value plus 1900. This timestamp is updated to represent a point in time within the specified year, with the month, date, hour, minute, and second the same as before, as interpreted in the local time zone. If the date was February 29, for example, and the year is set to a non-leap year, then the new date is treated as if it were on March 1.