Constructors
| Name | Description |
|---|---|
| Timestamp(int, int, int, int, int, int, int) | Construct a Timestamp Object |
| Timestamp(long) | Construct a Timestamp using a milliseconds time value. |
Methods
| Name | Description |
|---|---|
| after(Timestamp) | Is this timestamp later than the timestamp argument? |
| before(Timestamp) | Is this timestamp earlier than the timestamp argument? |
| equals(Timestamp) | Test Timestamp values for equality |
| getNanos() | Get the Timestamp's nanos value |
| setNanos(int) | Set the Timestamp's nanos value |
| toString() | Format a timestamp in JDBC timestamp escape format |
| valueOf(String) | Convert a string in JDBC timestamp escape format to a Timestamp value |