List of utility methods to do Date Long Format
String | getLongPattern(final Locale locale) get Long Pattern return ((SimpleDateFormat) getDateTimeInstance(LONG, LONG, locale)).toPattern();
|
String | getLongTime() get Long Time return longsdf.format(new Date()); |
String | getLongWeekday(int dayOfWeek) Return the long name of the weekday return getLongWeekday(dayOfWeek, Locale.getDefault());
|