Creates a full string representation for the specified date. @param date date @return string with the formatted date
(final Date date)
| 47 | * @return string with the formatted date |
| 48 | */ |
| 49 | public static synchronized String format(final Date date) { |
| 50 | return format(date, FULL); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Creates a string representation for a date in the specified format. |