Converts the value of this Timestamp into a Date, representing the time in UTC. This method will return the same result for all Timestamps representing the same point in time, regardless of the local offset. Because Date instances are mutable, this method returns a new instan
()
| 1569 | * @return a new {@code Date} instance, in UTC |
| 1570 | */ |
| 1571 | public Date dateValue() |
| 1572 | { |
| 1573 | long millis = getMillis(); |
| 1574 | return new Date(millis); |
| 1575 | } |
| 1576 | |
| 1577 | |
| 1578 | /** |