Format the date according to the strftime-style string given in the constructor. @param date the date to format @return the formatted date
(Date date)
| 126 | * @return the formatted date |
| 127 | */ |
| 128 | public String format(Date date) { |
| 129 | return simpleDateFormat.format(date); |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Get the timezone used for formatting conversions |